<!-- 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="index.html">Poly - Triplex</a>'); 
document.write('    <ul id="sub-nav">'); 
document.write('      <li><a href="cured_place_liner.html">Cured in Place Liner</a></li>');						
document.write('      <li><a href="the_process.html">The Process</a></li>');
document.write('      <li><a href="polytriplex_case_study.html">Case Study</a></li>'); 
document.write('      <li><a href="polytriplex_brochure.html">Poly - Triplex Brochure</a></li>');
document.write('      <li><a href="polytriplex_specs.html">Standard Specifications</a></li>');
 
document.write('    </ul>');
document.write('  </li>');	
document.write('  <li class="menuT"><a href="index.html">Permacast/Permaform</a>'); 
document.write('    <ul id="sub-nav">'); 					
document.write('      <li><a href="coatings.html">COR+GARD® Coatings</a></li>');
document.write('      <li><a href="structure_liners.html">Structural Liners</a></li>');	 
document.write('      <li><a href="corrosion_protection.html">Corrosion Protection</a></li>');	
document.write('      <li><a href="design_guide.html">Design Guide</a></li>');
document.write('      <li><a href="cccp_tech_guide.html">CCCP Tech Guide</a></li>');
document.write('      <li><a href="specifications.html">Specifications</a></li>');	
document.write('      <li><a href="perm_case_study.html">Case Studies</a></li>');


document.write('    </ul>');
document.write('  </li>');		  

document.write('<li class="menuT"><a href="top_seal.html">Top Seal</a></li>');	 

document.write('<li class="menuT"><a href="fiberglass_insert.html">Fiberglass Insert</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;

