function over_effect(e,state){
	if(document.all)ob=e.srcElement 
	else if(document.getElementById)ob=e.target
	if(ob.className.substring(0,8)=="menuitem"){
		if(ob.className!="menuitemSelected"){
			ob.className="menuitem"+state
		}
	}else{
		while(ob.tagName!="DIV"){
			ob=document.getElementById?ob.parentNode:ob.parentElement
			if(ob.className.substring(0,8)=="menuitem"){
				if(ob.className!="menuitemSelected"){
					ob.className="menuitem"+state
				}
			}
		}
	}
}


function makemenu(mn){
	sMenu="Home#start1.htm"
	+"|Photo Gallery#gal.htm"
	+"|360° Panorama#pan.htm"
	+"|Reservation form#reservation.htm"
	+"|Tariff#tariff-gr.htm"
	+"|Contact#contact.htm"
	+""
	arrMenu=sMenu.split('|')
	sA=""
	sA+="<div onMouseover=\"over_effect(event,'Hover')\" onMouseout=\"over_effect(event,'Normal')\">"
	sA+="<table width=515 border=0 cellspacing=0 cellpadding=0><tr>"
	for(i=0;i<arrMenu.length;i++){
		ob=arrMenu[i].split('#')
		sA=sA+"<td align=center class="+((mn==i)?"menuitemSelected":"menuitemNormal")+" onclick=location.href='"+ob[1]+"'>"+ob[0]+"</td>"
	}
	sA=sA+"</tr></table></div>"
	document.write(sA);
}


