sfHover = function() {
	var sfEls = document.getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function Rand() {
	document.getElementById("Rand").innerHTML =
'<center><table border="1px" bordercolor="maroon"><tr><td style="border:none">'+
'<p style="text-align:center; font-size:11px"><strong>Come and enjoy</strong><br>'+
'opening hours of our restaurant'+
'Tuesday from 4 p.m. util midnight<br>'+
'Wednesday to Saturday<br>from 9 a.m. until midnight'+
'<br>Sunday<br> from 9 a.m. until 4 p.m.'+
'<br>Day of Rest: Monday<br>(except Festival times)</p></td></tr></table></center><br>';

}


