writeLocalMenuGrand();

function writeLocalMenuGrand(){	
	var strLocalmenu='';	
	var pageIntro,pageGallery,pageFactsheet,pageRooms,pageFacilities,pageFunction;

	var butHoverIntro,butHoverGallery,butHoverFactsheet,butHoverRooms,butHoverFacilities,butHoverFunction;
	
	// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	// Get the Url from the window location bar
	// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
		var strLoc = new String(document.location);
		
	// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	// Parse the url to see what page is
	// being diplayed and set the appropriate
	// value to ensure the brand submenu
	// displays the correct menu graphic
	// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~	

	if (strLoc.indexOf('chaletdeladranse')>0){
		pageIntro = 'down';
		butHoverIntro= 'down';
	}
	else{
		pageIntro = 'off';
		butHoverIntro= 'on';		
	}
	if (strLoc.indexOf('morzinesandw.html')>0){
		pageGallery = 'down';
		butHoverGallery= 'down';
	}
	else{
		pageGallery = 'off';
		butHoverGallery= 'on';
	}

	if (strLoc.indexOf('location.html')>0){
		pageFactsheet = 'down';
		butHoverFactsheet = 'down';
	}
	else{
		pageFactsheet = 'off';
		butHoverFactsheet = 'on';
	}

	if (strLoc.indexOf('links.html')>0){
		pageRooms = 'down';
		butHoverRooms = 'down';
	}
	else{
		pageRooms = 'off';
		butHoverRooms = 'on';
	}


	if (strLoc.indexOf('prices.html')>0){
		pageFacilities = 'down';
		butHoverFacilities = 'down';
	}
	else{
		pageFacilities = 'off';
		butHoverFacilities = 'on';
	}


	if (strLoc.indexOf('reservations.html')>0){
		pageFunction = 'down';
		butHoverFunction = 'down';
	}
	else{
		pageFunction = 'off';
		butHoverFunction = 'on';
	}

strLocalmenu = strLocalmenu + '<table cellpadding="0" cellspacing="0" border="0" width="796" bgcolor="" height="56">';
strLocalmenu = strLocalmenu + '<tr>';
strLocalmenu = strLocalmenu + '<td height="56" width="185"><a href="chaletdeladranse.html" target="_parent" onMouseOut="swapImgRestore()" onMouseOver="swapImage(\'chalet-de-la-dranse\',\'\',\'images_l/chalet-de-la-dranse-'+butHoverIntro+'.gif\')",1><img name="chalet-de-la-dranse" width="185" height="56" border="0" src="images_l/chalet-de-la-dranse-'+pageIntro+'.gif"></td>';	
strLocalmenu = strLocalmenu + '<td height="56" width="232"><a href="morzinesandw.html" target="_parent" onMouseOut="swapImgRestore()" onMouseOver="swapImage(\'morzine-summ-wint\',\'\',\'images_l/morzine-summ-wint-'+butHoverGallery+'.gif\')",1><img name="morzine-summ-wint" src="images_l/morzine-summ-wint-'+pageGallery+'.gif" border="0" width="232"></a></td>';
strLocalmenu = strLocalmenu + '<td height="56" width="91"><a href="location.html" target="_parent" onMouseOut="swapImgRestore()" onMouseOver="swapImage(\'locatio\',\'\',\'images_l/location-'+butHoverFactsheet+'.gif\')",1><img name="locatio" src="images_l/location-'+pageFactsheet+'.gif" border="0" width="91" height="56"></a></td>';

strLocalmenu = strLocalmenu + '<td height="56" width="64"><a href="prices.html" target="_parent" onMouseOut="swapImgRestore()" onMouseOver="swapImage(\'prices\',\'\',\'images_l/prices-'+butHoverFacilities+'.gif\')",1><img name="prices" src="images_l/prices-'+pageFacilities+'.gif" border="0" width="64" height="56"></a></td>';

strLocalmenu = strLocalmenu + '<td height="56" width="105"><a href="links.html" target="_parent" onMouseOut="swapImgRestore()" onMouseOver="swapImage(\'links\',\'\',\'images_l/links-'+butHoverRooms+'.gif\')",1><img name="links" src="images_l/links-'+pageRooms+'.gif" border="0" width="105" height="56"></a></td>';

strLocalmenu = strLocalmenu + '<td height="56" width="119"><a href="reservations.html" target="_parent" onMouseOut="swapImgRestore()" onMouseOver="swapImage(\'reservations\',\'\',\'images_l/reservations-'+butHoverFunction+'.gif\')",1><img name="reservations" src="images_l/reservations-'+pageFunction+'.gif" border="0" width="119" height="56"></a></td>';


strLocalmenu = strLocalmenu + '</tr>';

strLocalmenu = strLocalmenu + '</table>';		
document.write (strLocalmenu);	

}