


/**
 * 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		 
 */

var tempCounter=0;

var levelMenuOptionsArray = [];
levelMenuOptionsArray[tempCounter++] = [10,'col1',44,20,'../img/menu/titles/home','Home','../startsida/index.asp'];
levelMenuOptionsArray[tempCounter++] = [20,'col2',49,20,'../img/menu/titles/system','System','../system/info.asp'];
levelMenuOptionsArray[tempCounter++] = [30,'col3',62,20,'../img/menu/titles/company','Company','../company/story.asp'];
levelMenuOptionsArray[tempCounter++] = [40,'col4',68,20,'../img/menu/titles/ski_resorts','Ski resorts','../resorts/index.asp'];
levelMenuOptionsArray[tempCounter++] = [50,'col5',92,20,'../img/menu/titles/avalanche_facts','Avalanche facts','../avalanche/equipment.asp'];
levelMenuOptionsArray[tempCounter++] = [60,'col6',43,20,'../img/menu/titles/media','Media','../media/words_600.asp'];
levelMenuOptionsArray[tempCounter++] = [70,'col7',39,20,'../img/menu/titles/links','Links','../links/index.asp'];
levelMenuOptionsArray[tempCounter++] = [80,'col8',55,20,'../img/menu/titles/contact','Contact','../contact/index.asp'];
if (session_level==1 && session_logged_in) {
	// Låst meny (Level 1 - "Production")
	levelMenuOptionsArray[tempCounter++] = [90,'col9',114,20,'../img/menu/titles/industry_community','Industry community','../industry/article_603.asp']; 
} else if (session_level==2 && session_logged_in) {
	// Låst meny (Level 2 - "Rescue staff")
	levelMenuOptionsArray[tempCounter++] = [90,'col10',109,20,'../img/menu/titles/rescue_community','Rescue community','../rescue/quick_guide.asp']; 	
}
levelMenuOptionsArray[tempCounter++] = [85,'col85',94,20,'../img/menu/titles/translations','Translations',''];
