KPJApplication = new WebApplication();

/* CONTROLS */
KPJApplication.AddWebControl( new Menu({container: "menu"}) );

/* PAGES */
KPJApplication.AddWebPage( new ProductsPage({
    container: "content",
    url: "Components/ProductsPage/ProductsPage.php",
    name: "ProductsPage" 
}) );

KPJApplication.AddWebPage( new OfferPage({
    container: "content",
    url: "Components/OfferPage/OfferPage.php",
    name: "OfferPage" 
}) );

KPJApplication.AddWebPage( new AboutPage({
    container: "content",
    url: "Components/AboutPage/AboutPage.php",
    name: "AboutPage" 
}) );

KPJApplication.AddWebPage( new ReferencesPage({
    container: "content",
    url: "Components/ReferencesPage/ReferencesPage.php",
    name: "ReferencesPage" 
}) );

KPJApplication.AddWebPage( new PricesPage({
    container: "content",
    url: "Components/PricesPage/PricesPage.php",
    name: "PricesPage" 
}) );

// RUN
KPJApplication.Run();

