function styleWriter() {
   if ((navigator.userAgent).indexOf("Safari")!=-1) {
	   document.write('<link href="css/safari.css" media="screen" rel="Stylesheet" type="text/css" />')
   } else if ((navigator.appName).indexOf("Opera")!=-1) {
	   document.write('')
   }
 }
styleWriter();

$(document).ready(function()	{
 $("li.menu").hover(function(){		
	$(this).parent().css("border-top-color","#E3C231");
	}, function() {
		$(this).parent().css("border-top-color","#4a4a4a");
	});
	
 $("li.catering").hover(function(){		
	$(this).parent().css("border-top-color","#64C6D7");
	}, function() {
		$(this).parent().css("border-top-color","#4a4a4a");
	});
	
 $("li.dining").hover(function(){		
	$(this).parent().css("border-top-color","#591602");
	}, function() {
		$(this).parent().css("border-top-color","#4a4a4a");
	});
	
 $("li.about").hover(function(){		
	$(this).parent().css("border-top-color","#68C957");
	}, function() {
		$(this).parent().css("border-top-color","#4a4a4a");
	});
	
 $("li.location").hover(function(){		
	$(this).parent().css("border-top-color","#FF5306");
	}, function() {
		$(this).parent().css("border-top-color","#4a4a4a");
	});
	
 $("li.contact").hover(function(){		
	$(this).parent().css("border-top-color","#24666B");
	}, function() {
		$(this).parent().css("border-top-color","#4a4a4a");
	});
});


$(document).ready(function()	{
 var totalNum = 12; //the total number of images in a folder.
 var rndNum = Math.floor(Math.random() * totalNum);
 $("div.switchimg").css("background-image","url(images/topphoto/" +
rndNum + ".jpg)");
});