

var arrLinkText= Array("Home","Accommodation","Restaurant","Weddings and Civil Partnerships",
                        "Conferences","Location","Photos","Contact us","Book Online");
var arrLinkUrl= Array("index.html","accom.html","restaurant.html","weddingsandcp.html",
                        "conf.html","location.html","photos.html","contact.html","booking.pl");



function doMenu(){

	document.write("<table cellpadding='3' cellspacing='9' width='100%'>");
	for(n=0;n<arrLinkText.length;n++){
		document.write(DoCell(arrLinkText[n], arrLinkUrl[n]));
	}
	
	//document.write("<tr><td style='height:50px;'>&nbsp;</td></tr>");
	
	//document.write(DoCell("Employment<br>openings", "contact.html#emp"));
	
	document.write("</table>");

}

function DoCell(strText, strUrl)
{
	var s = "";
	
	if(document.location.href.indexOf(strUrl)==-1){
		s = "<tr><td style='border:0;border-left:4px solid #E0E0E0;'>";
		s += "<a href='"+strUrl+"'>"+strText+"</a></td></tr>";
	}else{
		s = "<tr><td style='border:0;border-left:4px solid #6666FF;font-size:10pt; font-family: sans-serif;'>";
		s += strText;
		s += "</td></tr>";
	}
	if (strText=="Photos")
	{
		s = s.replace("'>","' target=\"_new\">");
	}

	return s;
}



var winPic;
function showPic(strTitle, strUrl){
  winPic=window.open("","win","height=560,width=550,location=no,toolbar=no,resizable=yes");
  el=winPic.document;
  el.open();
  el.write("<html><body style='background-color: #FFFFFF'>");
  el.write("<span style='width:100%;background-color:#b8b686;");
  el.write("color:white;font-size:14pt;font-family:sans-serif;padding:5px'>"+strTitle+"</span>");
  el.write("<p align=center><img src='images/"+strUrl+"'></p>");
  el.write("<p align=center><a href='#' onclick='window.close()'>Close Window</a></p>");
  el.write("</body></html>");
  el.close();
  winPic.focus();
}