window.onload = init;    var d=new Date();	var weekday=new Array(7);	weekday[0]="Sunday";	weekday[1]="Monday";	weekday[2]="Tuesday";	weekday[3]="Wednesday";	weekday[4]="Thursday";	weekday[5]="Friday";	weekday[6]="Saturday";	var Monday_1 = "<span class='dish'>House-made Meatloaf</span> - ground beef, green peppers, onion, carrot, garlic, breadcrumbs, egg, thyme, with our house-made marinara.";	var Tuesday_1 = "<span class='dish'>Beef & Pork Lasagna</span> - eggs, pesto, ricotta, parmesan, roasted garlic.  Dinner salad & garlic bread.";	var Wednesday_1 = "<span class='dish'>Eggplant Parmigiana</span> - breaded eggplant pan fried, mozzarella, parmesan, marinara.  Dinner salad & garlic bread.";	var Thursday_1 = "<span class='dish'>Ossobuco</span> - veal shank slow-roasted with carrots, sage, thyme, rosemary.  Served over your choice of gnocchi or risotto. Garlic bread.";	var Friday_1 = "<span class='dish'>Fettucini & Mussels</span> - Mediterranean mussels sauted in olive oil, dry white wine, onion, garlic.  Tossed in fettucini pasta.  Dinner salad & garlic bread.";	var Saturday_1 = "<span class='dish'>Fried Shrimp Po-boy</span> - breaded Gulf shrimp seasoned with cayenne and deep fried.  Placed in hoagie bread with lettuce, tomato and remoulade.  Side fries.";	var Saturday_2 = "<span class='dish'>Spaghetti alla Vongole</span> - Littleneck clams sauted in olive oil, dry white wine, garlic, red pepper flakes and  lemon juice with house-cured Pancetta. Tossed in spaghetti pasta. Dinner salad & garlic bread.";    function init(){	document.getElementById(weekday[d.getDay()]).style.backgroundColor='#ff9933';			document.getElementById("Monday_1").onclick = featureOneDiv;document.getElementById("Tuesday_1").onclick = featureOneDiv;document.getElementById("Wednesday_1").onclick = featureOneDiv;document.getElementById("Thursday_1").onclick = featureOneDiv;document.getElementById("Friday_1").onclick = featureOneDiv;document.getElementById("Saturday_1").onclick = featureOneDiv;document.getElementById("Saturday_2").onclick = featureOneDiv;		var test2 = document.getElementById("specials_right");function featureOneDiv(evt) {		var theId = (evt) ? evt.target : window.event.srcElement;	//alert(theId.id);var newVar = theId.id;			var detailElement = document.createElement("span");	detailElement.setAttribute('id', 'detail');	document.getElementById(theId.id).appendChild(detailElement); 		var studentInfo = document.getElementById("detail");//var txt = document.createTextNode(" This text was addedaddedaddedadded to the DIV.");//document.getElementById(theId.id).appendChild(txt); 						var theMsg = "";//"<span id='closeBox'><a href='#'>close</a></span><h3>";				//intY = document.getElementById('divName').style.top;		//intX = document.getElementById('divName').style.left;				theMsg += window[newVar];		theMsg += "<br>";		//theMsg += (theId.offsetLeft) + "px";		theMsg += "<img src='images/carrot.gif'>";		studentInfo.innerHTML = theMsg;								studentInfo.style.visibility = "visible";								document.getElementById("specials_container").onmouseout = function() {			document.getElementById(theId.id).removeChild(studentInfo); 			//document.getElementById("detail").style.visibility = "hidden";			}}}