<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'
// USE lowercase FOR ALL OPTIONS ONLY

var showtop			= "yes"		//  SHOW MENU TOP AREA

if (showtop == "yes") {
document.write('<br><br><br>')
document.write('<div id="menutop" style="z-index: 10;" class="1printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td width="154" height="30" align="center" background="picts/menu-background.gif" <a class="title">Services</a><br>');
document.write('</td></tr></table>');
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">');

// START MENU LINKS - EDIT BELOW THIS AREA

document.write('  <li class="menuT"><a href="services.html">Overview</a></li>');

document.write('  <li class="menuT"><a href="service1.html">Life Support</a></li>');

document.write('  <li class="menuT"><a href="service2.html">Real Estate</a></li>'); 

document.write('  <li class="menuT"><a href="service3.html">Construction Equipment</a></li>');

document.write('  <li class="menuT"><a href="service4.html">Interior Design</a></li>');

document.write('  <li class="menuT"><a href="service5.html">Commercial Services</a></li>');

document.write('  <li class="menuT"><a href="service6.html">Other Services</a></li>');

// END LINKS //

document.write('</ul>');
document.write('</td></tr><tr><td align="center">');

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;