
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,'our_company', 81, 21,'/images/tmb_compa', 'our company','/ourcompany/index.html'];
level2MenuOptionsArray[tempCounter++] = [20,'citizenship',63,21,'/images/tmb_citiz','citizenship','/citizenship/index.html'];
level2MenuOptionsArray[tempCounter++] = [30,'brand',47,21,'/images/tmb_brands','brands','/brands/index.html'];
level2MenuOptionsArray[tempCounter++] = [80,'heritage',57,21,'/images/tmb_heritage','heritage','/heritage/ourheritage.html'];
level2MenuOptionsArray[tempCounter++] = [40,'investors',57,21,'/images/tmb_invest','investors','/investors/index.html'];
level2MenuOptionsArray[tempCounter++] = [50,'press_center',71,21,'/images/tmb_press','press center','/presscenter/index.html'];
level2MenuOptionsArray[tempCounter++] = [60,'careers',49,21,'/images/tmb_carrer','careers','/careers/index.html'];
level2MenuOptionsArray[tempCounter++] = [70,'contact_us',66,21,'/images/tmb_contac','contact us','/contactus/index.html'];



/**
 * 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','/caas/images/b_sitemap.gif','/caas/images/b_sitemap_ro.gif'];
rollOverArray[roc++] = ['store','/caas/images/b_store.gif','/caas/images/b_store_ro.gif'];
rollOverArray[roc++] = ['go_button','/caas/images/b_go.gif','/caas/images/b_go_ro.gif'];
rollOverArray[roc++] = ['printable','/caas/images/printable_version.gif','/caas/images/printable_version_ro.gif'];
rollOverArray[roc++] = ['viewall','/caas/presscenter/img/viewall.gif','/caas/presscenter/img/viewall_on.gif'];
rollOverArray[roc++] = ['promolink','/caas/images/promolink_up.gif','/caas/images/promolink_up_on.gif'];

