<!-- Begin

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

// USE lowercase FOR ALL OPTIONS ONLY


var showbottom		= "no"		//  SHOW TRANE LOGO


document.write('<div id="menulocation" style="z-index: 30;">');
document.write('<table cellpadding="0" cellspacing="0" border="0" width="184"><tr><td valign="middle">');
document.write('<table width="30" border="0" cellpadding="0" cellspacing="0">');
document.write('<tr><td class="off" onMouseOver="this.className=\'on\'" onMouseOut="this.className=\'off\'" height="23"><div align="center"><a href="home.html"><img src="images/nav/home.png" border="0" alt="Home Page" width="16" height="16" align="middle"></a></div></td></tr>');
document.write('<tr><td height="23" class="off" onMouseOver="this.className=\'on\'" onMouseOut="this.className=\'off\'"><div align="center"><a href="contact.html"><img src="images/nav/contact.png" border="0" alt="Contact Us" width="16" height="16" align="middle"></a></div></td></tr>');
document.write('<tr><td height="23" class="off" onMouseOver="this.className=\'on\'" onMouseOut="this.className=\'off\'"><div align="center"><a href="products.html"><img src="images/nav/residential.png" border="0" alt="Products" width="16" height="16" align="middle"></a></div></td></tr>');
document.write('<tr><td height="23" class="off" onMouseOver="this.className=\'on\'" onMouseOut="this.className=\'off\'"><div align="center"><a href="services.html"><img src="images/nav/commercial.png" border="0" alt="Services" width="16" height="16" align="middle"></a></div></td></tr>');
document.write('<tr><td height="23" class="off" onMouseOver="this.className=\'on\'" onMouseOut="this.className=\'off\'"><div align="center"><a href="staff.html"><img src="images/nav/staff.png" border="0" alt="Personnel" width="16" height="16" align="middle"></a></div></td></tr>');
//document.write('<tr><td height="23" class="off" onMouseOver="this.className=\'on\'" onMouseOut="this.className=\'off\'"><div align="center"><a href="coupon.html"><img src="images/nav/coupons.png" border="0" alt="Coupons" width="16" height="16" align="middle"></a></div></td></tr>');
document.write('<tr><td height="23" class="off" onMouseOver="this.className=\'on\'" onMouseOut="this.className=\'off\'"><div align="center"><a href="faq.html"><img src="images/nav/faq.png" border="0" alt="FAQ" width="16" height="16" align="middle"></a></div></td></tr>');
document.write('<tr><td height="23" class="off" onMouseOver="this.className=\'on\'" onMouseOut="this.className=\'off\'"><div align="center"><a href="termTip.html"><img src="images/nav/terms.png" border="0" alt="Terms and Tips" width="16" height="16" align="middle"></a></div></td></tr>');
document.write('<tr><td height="23" class="off" onMouseOver="this.className=\'on\'" onMouseOut="this.className=\'off\'"><div align="center"><a href="testimonials.html"><img src="images/nav/testimonials.png" border="0" alt="Testimonials" width="16" height="16" align="middle"></a></div></td></tr>');
document.write('</table></td>');



document.write('<td width="154" valign="middle" cellpadding="10" align="left">');
document.write('<ul id="top-nav">');

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

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

document.write('  <li class="menuT"><a href="products.html">Products</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="products.html">Products</a></li>');
document.write('      <li><a href="financing.html">Financing</a></li>');
document.write('      <li><a href="geothermal.html">Geothermal</a></li>');
document.write('    </ul>');
document.write('  </li>');

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

document.write('  <li class="menuT"><a href="about.html">About Us</a>');
document.write('    <ul id="sub-nav">');
document.write(' <li><a href="about.html">About Us</a>');
document.write(' <li><a href="why.html">Why Trane</a></li>');
document.write('    </ul>');
document.write('  </li>');

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

document.write('  <li class="menuT"><a href="articles.html">Articles, Terms and Tips</a>');
document.write('    <ul id="sub-nav">');
document.write('  <li><a href="articles.html">Articles</a></li>');
document.write('  <li><a href="termTip.html">Terms and Tips</a></li>');
document.write('    </ul>');
document.write('  </li>');

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


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

if (showbottom == "yes") {
document.write('<div id="menutop" style="z-index: 30;" class="printhide" valign="bottom" >');
document.write('<img src="picts/menu-top.gif" width="152" height="20" class="menutrans">');
document.write('</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;
