
var tempCounter=0;

/**
 * Menu Data Structures
 *
 *  Menu Record
 * [0] = arbitrary, unique, identifier of the menu state.  This 
 *	     determines which menu element is "active" and which sub
 *		 menus are displayed
 * [1] = OPTIONAL(if this is a text menu): Image name and id as 
 *		 designated in the img tag
 * [2] = OPTIONAL(if this is a text menu): image width
 * [3] = OPTIONAL(if this is a text menu): image height
 * [4] = OPTIONAL(if this is a text menu): href to the image 
 *		 minus the naming convention extensions such as '_dn'
 * 		 and the file type.  The default menu printing functions 
 *		 will create RollOver obejcts according to the '_dn' & '_ro'
 *		 naming convention.  All menu graphics are assumed to be gifs.
 * [5] = The 'alt' value of an img tag if this is a graphic menu or the 
 *		 menu text if this is a text menu
 * [6] = The link for this menu option to link to 
 * [7] = OPTIONAL: An array of nested menu elements.  This is used to create
 *       a single level of nesting on the left nav but it could
 *       be used to create create tree menus of arbitrary depth		 
 */

//holds the data for the global links on the top rigth side
var level1MenuOptionsArray = [];
level1MenuOptionsArray[tempCounter++] = [10,'coca_cola_company',124,24,'/images/tmb_company','The Coca-Cola Company','/index.html'];
level1MenuOptionsArray[tempCounter++] = [20,'coca_cola_worldwide', 109, 24, '/images/tmb_intsites', 'Coca-Cola Worldwide','http://www.coca-cola.com/worldwide/'];
level1MenuOptionsArray[tempCounter++] = [30,'coca_cola_in_the_usa', 110, 24, '/images/tmb_cocausa', 'Coca-Cola in the USA','http://www.coca-cola.com/usa/'];
tempCounter=0;

//holds the data for the main menu
var level2MenuOptionsArray = [];
level2MenuOptionsArray[tempCounter++] = [10,'News', 92, 32, 'img/menu1', 'News','accueil.php?rub=1'];
level2MenuOptionsArray[tempCounter++] = [20,'Presentation',125,32,'img/menu2','Presentation','#'];
level2MenuOptionsArray[tempCounter++] = [30,'Location',113,32,'img/menu3','Location','#'];
level2MenuOptionsArray[tempCounter++] = [80,'Magasin',135,32,'img/menu4','Magasin','accueil.php?rub=4&srub=1'];
level2MenuOptionsArray[tempCounter++] = [40,'Calendrier',155,32,'img/menu5','Calendrier','accueil.php?rub=5&srub=1'];
level2MenuOptionsArray[tempCounter++] = [50,'Telecharger',139,32,'img/menu6','Telecharger','accueil.php?rub=6'];
level2MenuOptionsArray[tempCounter++] = [60,'Liens',106,32,'img/menu7','Liens','accueil.php?rub=7'];
level2MenuOptionsArray[tempCounter++] = [70,'Contact',130,32,'img/menu8','Contact','accueil.php?rub=8'];


<!--

/**
 * Creates RollOver objects that preload their rollover image.
 * You do not need to add menu rollovers to this list, 
 * the menu code Creates it's own 
 *
 * The rollover record:
 * [0] = the name or ID of the image object as it 
 *     appears in the img tag. 
 * [1] = the normal image
 * [2] = the image that is displayed when the mouse is over
 */
var roc=0;
var rollOverArray = [];
rollOverArray[roc++] = ['site_map','/images/b_sitemap.gif','/images/b_sitemap_ro.gif'];
rollOverArray[roc++] = ['store','/images/b_store.gif','/images/b_store_ro.gif'];
rollOverArray[roc++] = ['go_button','/images/b_go.gif','/images/b_go_ro.gif'];
rollOverArray[roc++] = ['printable','/images/printable_version.gif','/images/printable_version_ro.gif'];
rollOverArray[roc++] = ['viewall','/presscenter/img/viewall.gif','/presscenter/img/viewall_on.gif'];
rollOverArray[roc++] = ['promolink','/images/promolink_up.gif','/images/promolink_up_on.gif'];
