function mainMenu(main)
{

switch(main){
case "gylden":
	document.write('<a href="../about_e.htm">about the hotel</a>');
	document.write('<a href="../rate_e.htm">rates</a>');
	document.write('<a href="../book_e.htm">booking</a>');
	document.write('<a href="../map_e.htm">map</a>');
	document.write('<a href="../todo_e.htm">activities</a>');
	document.write('<a href="../contact_e.htm">contact</a>');
	break;
}
}

function subMenu(subm)
{

switch(subm){
case "about":
	document.write('<a href="../about_e.htm">information</a>');
	document.write('<a href="../room_e.htm">rooms</a>');
	document.write('<a href="../rest_e.htm">breakfast&restaurant</a>');
	document.write('<a href="../hist_e.htm">history</a>');	
	break;	
case "book":
	document.write('<a href="#">private booking</a>');
	document.write('<a href="http://www.snrhotels.com/hotels/checkavailability.asp?hc=THNGYL&cc=BX&c=Uddevalla&ctry=Sweden" target="_blank">corporate booking</a>');
	break;
}
}   								   
       								   
     					