<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var showimage1		= "no"		//  SHOW FIRST SIDEBAR IMAGE
var showimage2		= "yes"		//  SHOW SECOND SIDEBAR IMAGE
var showtop		= "no"		//  SHOW MENU TOP AREA this is the transparent area over the horiz animation bar

   if (showtop == "yes") {
document.write('<div id="menutop" style="z-index: 10;" class="printhide">');
document.write('<img src="images/menu-top-1.gif" width="154" height="83" class="menutrans"><br>');
document.write('<img src="images/menu-top-2.gif" width="154" 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="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="index.html">Home</a></li>');

document.write('  <li class="menuT"><a href="">Products</a>'); 
document.write('    <ul id="sub-nav">'); 					
document.write('      <li><a href="hdpe_industrial.html">HDPE Industrial PE 3408</a></li>');
document.write('      <li><a href="hdpe_conduit.html">HDPE Conduit / Duct</a></li>');
document.write('      <li><a href="hdpe_tubing.html">HDPE Tubing PE3408/3608</a></li>');	  
document.write('      <li><a href="hdpe_gas_pipe_tubing.html">HDPE Gas Pipe & Tubing</a></li>');
document.write('      <li><a href="geothermal.html">Geothermal</a></li>');
document.write('      <li><a href="pvc_sewer_drain.html">PVC Sewer & Drain Pipe</a></li>');
document.write('      <li><a href="pvc_conduit.html">PVC Conduit</a></li>');
document.write('      <li><a href="pvc_fence_posts.html">PVC Solid Fence Posts</a></li>');
document.write('      <li><a href="gasketed_pvc.html">Gasketed PVC</a></li>');
document.write('    </ul>');
document.write('  </li>');	

document.write('<li class="menuT"><a href="hdpe_technical_data.html">HDPE Technical Data</a></li>');

document.write('<li class="menuT"><a href="pvc_technical_data.html">PVC Technical Data</a></li>');

document.write('<li class="menuT"><a href="news.html">News</a></li>');

document.write('<li class="menuT"><a href="sales_quote.html">Sales Quote</a></li>');	

document.write('<li class="menuT"><a href="directions.html">Directions</a></li>');

document.write('<li class="menuT"><a href="links.html">Links</a></li>');

document.write('<li class="menuT"><a href="contact_us.html">Contact Us</a></li>');

document.write('<li class="menuT"><a href="sitemap.html">Site Map</a></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="images/menu-picture-1.jpg" border="0" class="borders"></a><br><br><br>');
}
   if (showimage2 == "yes") { 
document.write('<br><b> </b><br><br>');   
 
 
  
 

 
}

//  End -->

document.write('</td></tr></table></DIV>');


// COPYRIGHT 2007 © Allwebco Design Corporation
// 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;
