<!-- Begin



var showimage1		= "no"		//  SHOW FIRST SIDEBAR IMAGE
var showimage2		= "no"		//  SHOW SECOND 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.gif" width="152" height="107" class="menutrans"><br>');
document.write('</div>');
}

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

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



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

document.write('  </li>');


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


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



document.write('  <li class="menuT"><a href="location.html">Find Us</a>');
document.write('  </li>');



// END LINKS //



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


// START MENU IMAGES


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


//  End -->



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

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;
