function initialize (pageKey, indexPath, logoPath)
{
 var background;
 var foreground;
 var menu;
 var note;

 background=new Array();
 foreground=new Array();
 menu=new Array();
 note=new Array();

 processPage(indexPath, logoPath);
 processTitle();

// * BEGINNING ****************************************************************************************
 addBackgroundItem(background, "../../img/banner/banner-00.jpg", "banner 00");
 addBackgroundItem(background, "../../img/banner/banner-01.jpg", "banner 01");
 addBackgroundItem(background, "../../img/banner/banner-02.jpg", "banner 02");
 addBackgroundItem(background, "../../img/banner/banner-03.jpg", "banner 03");
 addBackgroundItem(background, "../../img/banner/banner-04.jpg", "banner 04");
 addBackgroundItem(background, "../../img/banner/banner-05.jpg", "banner 05");
 addBackgroundItem(background, "../../img/banner/banner-06.jpg", "banner 06");
 addBackgroundItem(background, "../../img/banner/banner-07.jpg", "banner 07");
 addBackgroundItem(background, "../../img/banner/banner-08.jpg", "banner 08");
 addBackgroundItem(background, "../../img/banner/banner-09.jpg", "banner 09");

 addMenuItem(menu, "menu_item_0", "Zybar Caf&eacute;",  "index.html",                 "home-index");
 addMenuItem(menu, "menu_item_0", "Coordonn&eacute;es", "location.html",              "home-location");
 addMenuItem(menu, "menu_item_0", "Horaires",    "time.html",                  "home-time");
 addMenuItem(menu, "menu_item_0", "Tarifs",      "price.html",                 "home-price");
 addMenuItem(menu, "menu_item_0", "Liens",       "link.html",                  "home-link");
 addMenuItem(menu, "menu_item_0", "Jeux",        "game.html",                  "home-game");
 addMenuItem(menu, "menu_item_0", "",            "",                           "");
 addMenuItem(menu, "menu_item_0", "Tournois",    "",                           "");
 addMenuItem(menu, "menu_item_0", "CS",          "../game-cs/index.html",      "game-cs-index");
 addMenuItem(menu, "menu_item_0", "YGO",         "../game-ygo/index.html",     "game-ygo-index");
 addMenuItem(menu, "menu_item_0", "WOW JCC",     "../game-wow-jcc/index.html", "game-wow-jcc-index");
 addMenuItem(menu, "menu_item_0", "Magic",       "../game-magic/index.html",   "game-magic-index");

 addNoteItem(note, "note_item", "- &copy; 2005-2008 Zybar S&agrave;RL -", "footnote");
// * END **********************************************************************************************

 buildBackground(background, "top_frame", "left top", "no-repeat", "");

 buildForeground(foreground);

 buildMenu(menu, "menu", "../../img/menu-left.png", "../../img/menu-right.png", pageKey);

 buildNote(note);
}