<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var showimage1		= "yes"		//  SHOW FIRST SIDEBAR IMAGE
var showimage2		= "no"		//  SHOW SECOND SIDEBAR IMAGE
var showimage3		= "no"		//  SHOW THIRD SIDEBAR IMAGE
var showtop		= "no"		//  SHOW MENU TOP AREA

   if (showtop == "yes") {
document.write('<div id="menutop" style="z-index: 10;" class="printhide">');
document.write('<img src="picts/menu-top-1.gif" width="186" height="83" class="menutrans"><br>');
document.write('<img src="picts/menu-top-2.gif" width="186" height="39"><br>');
document.write('</div>');
}

document.write('<div id="menulocation" style="z-index: 10;">');
document.write('<table cellpadding="0" cellspacing="0" border="0" width="186"><tr><td class="printhide">');

document.write('<ul id="top-nav">');


// START MENU LINKS - EDIT BELOW THIS AREA

document.write('  <li class="menuT"><a href="index.html">Home</a></li>');

// document.write('  <li class="menuT"><a href="http://tommasinosnv.com/blog">Tom&#39;s Blog</a></li>');

document.write('  <li class="menuT"><a href="downloads/TommasinosLunchMenu.pdf">Lunch Menu</a></li>');

document.write('  <li class="menuT"><a href="downloads/TommasinosDinnerMenu.pdf">Dinner Menu</a></li>');

document.write('  <li class="menuT"><a href="entertainers.htm">Entertainers</a></li>');

document.write('  <li class="menuT"><a href="about.htm">About Us</a></li>');

document.write('  <li class="menuT"><a href="catering.htm">Catering Services</a></li>');

document.write('  <li class="menuT"><a href="testimonials.htm">Testimonials</a></li>');

document.write('  <li class="menuT"><a href="contact.htm">Contact Us</a></li>');








// END LINKS //


document.write('</ul>');
document.write('</td></tr><tr><td align="center">');


// START MENU IMAGES


   if (showimage1 == "yes") {
document.write('<a href="index.html"><img src="picts/menu-picture-1a.jpg" border="0" class="borders"></a><br><br><br>');
}
   if (showimage2 == "yes") {
document.write('<a href="player-popup.htm"><img src="picts/menu-picture-2.jpg" border="0" class="borders"></a><br><br>');
}

   if (showimage3 == "yes") {
document.write('<a href="index.html"><img src="picts/menu-picture-3.jpg" border="0" class="borders"></a><br><br>');
}

//  End -->


document.write('</td></tr></table></DIV>');


// COPYRIGHT 2007-2009  Brian K Media 
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

function IEHoverPseudo() {

	var navItems = document.getElementById("top-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}

}
window.onload = IEHoverPseudo;
