<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var showimage1		= "yes"		//  SHOW FIRST SIDEBAR IMAGE
var showimage2		= "no"		//  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="residential_plumbing.html">Residential</a>'); 
document.write('<ul id="sub-nav">');			
document.write('<li><a href="residential_plumbing.html#cloggeddrains">Clogged Drains</a></li>');
document.write('<li><a href="residential_plumbing.html#draincleaning">Drain & Sewer Cleaning</a></li>');
document.write('<li><a href="residential_plumbing.html#leaklocating">Leak Locating and Isolating</a></li>');
document.write('<li><a href="residential_plumbing.html#ccct">Closed Circuit Color TV Pipe<br /> &nbsp;Inspections</a></li>');
document.write('<li><a href="residential_plumbing.html#repairs">Sewer, Water, & Gas Line<br /> &nbsp;Repairs</a></li>');
document.write('<li><a href="residential_plumbing.html#pipereplacements">Pipe replacement or Re-Piping</a></li>');
document.write('<li><a href="residential_plumbing.html#hvac">HVAC System Repairs</a></li>');
document.write('<li><a href="residential_plumbing.html#septicsystem">Septic System & Grease Trap<br /> &nbsp;Pumping</a></li>');
document.write('<li><a href="residential_plumbing.html#septicleach">Septic System and Leach Field<br /> &nbsp;inspections, certifications, and<br /> &nbsp;repairs</a></li>');
document.write('<li><a href="residential_plumbing.html#liftstations">Lift Stations and Sewage Sump<br /> &nbsp;Pumps</a></li>');
document.write('</ul>');
document.write('</li>');	

document.write('<li class="menuT"><a href="commercial_services.html">Commercial</a>');
document.write('</li>');  

document.write('<li class="menuT"><a href="temporary_sanitation.html">Temporary Sanitation</a>');
document.write('</li>'); 

document.write('<li class="menuT"><a href="" >Trenchless Technologies</a>');
document.write('<ul id="sub-nav">'); 
document.write('<li><a href="rehab.html">Rehabilition / Repairs</a></li>');
document.write('<li><a href="new_installations.html">New Installations</a></li>');
document.write('</ul>');
document.write('</li>'); 

document.write('<li class="menuT"><a href="technicians.html">Hear from our Technician</a></li>');  


document.write('<li class="menuT"><a href="schedule_appointment.html">Schedule an Appointment</a></li>'); 

document.write('<li class="menuT"><a href="customer_survey.html">Feedback</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>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left">');

// START MENU IMAGES

   if (showimage1 == "yes") {
document.write('<br />');

document.write('<center><img src="images/family.jpg" border="1" width="139" height="92" alt="family"><br /><br /><a href="weekly_special.html"><img src="images/flashingstar2new.gif" border="0" width="150" height="300" alt=""></a></center>');


document.write('<br />');
}
   if (showimage2 == "yes") { 
document.write('<br /><center>Book your service call<br />');  
document.write('Online - Click <a href="service_request.html">Here</a><br />and SAVE $20');  
document.write('<br /><a href="service_request.html"><img src="images/monitor.jpg" border="0" width="140" height="92" alt="AP Plumbing"></a></center><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;

