<!-- Begin HORIZONTAL CSS DROP MENU VER 1.50 2008

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY


var showtop		= "yes"		//  SHOW TOP MENU IMAGE
var showimage		= "yes"		//  SHOW BOTTOM MENU IMAGE


document.write('<div id="menulocation" class="printhide">');
   if (showtop == "yes") {
document.write('<img src="images/topmenu.gif" width="150" height="20" class="menutop"></a><br>');
}

// width of 220 set the left blue menu spacer wider from the original 150 width

document.write('<table cellpadding="0" cellspacing="0" border="0" width="0"><tr><td class="topmargin">');
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="about.htm">About</a></li>');


// document.write('  <li class="menuT"><a href="#" class="parentM">Projects</a>'); //
// document.write('    <ul id="sub-nav">'); //
// document.write('      <li><a href="blockwalls.htm">Block Walls</a></li>'); //
// document.write('      <li><a href="demolition.htm">Demolition</a></li>'); //
// document.write('      <li><a href="metrodome.htm">Metro Dome</a></li>'); //
// document.write('      <li><a href="landscaping.htm">Landscaping</a></li>'); //
// document.write('      <li><a href="drain.htm">Waterproofing</a></li>'); //
// document.write('    </ul>'); //
// document.write('  </li>'); //



document.write('  <li class="menuT"><a href="excavating.htm">Excavating</a></li>');

document.write('  <li class="menuT"><a href="water.htm">Sewer & Water Instulation & Repair</a></li>');

document.write('  <li class="menuT"><a href="camera.htm">Sewer Camera Location</a></li>');

document.write('  <li class="menuT"><a href="demolition.htm">Demolition</a></li>');

document.write('  <li class="menuT"><a href="drain.htm">Drain Tile & Water Problem Correction</a></li>');

document.write('  <li class="menuT"><a href="boulder.htm">Boulder & Block Walls</a></li>');

document.write('  <li class="menuT"><a href="shoreline.htm">Shoreline Restoration</a></li>');

document.write('  <li class="menuT"><a href="snowplowing.htm">Snow Plowing</a></li>');

document.write('  <li class="menuT"><a href="testimonials.htm">Testimonials</a></li>');

document.write('  <li class="menuT"><a href="feedback.htm">Feedback</a></li>');

document.write('  <li class="menuT"><a href="contact.htm">Contact</a></li>');







// END LINKS //



document.write('</ul>');
document.write('</td></tr><tr><td align="center">');





// START MENU IMAGE


   if (showimage == "yes") { 
 document.write('<img src="images/bottom.gif" width="150" height="20" border="0" class="borders-menuimage"></a><br><br><br>');
 }







// ORIGINAL TABLE //

document.write('</td></tr></table>');
document.write('</div>');





// START OF SECOND LEVEL MENU //

// var showtop		= "yes"		//  SHOW TOP MENU IMAGE
// var showimage		= "yes"		//  SHOW BOTTOM MENU IMAGE


// document.write('<div id="menulocation" class="printhide">');
//   if (showtop == "yes") {
// document.write('<img src="images/topmenu.gif" width="150" height="20" class="menutop"></a><br>');
// }

// width of 220 set the left blue menu spacer wider from the original 150 width

// document.write('<table cellpadding="0" cellspacing="0" border="0" width="0"><tr><td class="topmargin">');
// document.write('<ul id="top-nav">');




// START MENU LINKS - EDIT BELOW THIS AREA




// document.write('  <li class="menuT"><a href="gallery1.htm">Gallery</a></li>');

// document.write('  <li class="menuT"><a href="staff.htm">Staff</a></li>');

// document.write('  <li class="menuT"><a href="quotes.htm">Request A Quote</a></li>');

// document.write('  <li class="menuT"><a href="clients.htm">Our Clients</a></li>');



// END LINKS //



// document.write('</ul>');
// document.write('</td></tr><tr><td align="center">');





// START MENU IMAGE


//   if (showimage == "yes") { 
// document.write('<img src="images/bottom.gif" width="150" height="20" border="0" class="borders-menuimage"></a><br><br><br>');
// }







// ORIGINAL TABLE //

// document.write('</td></tr></table>');
// document.write('</div>');


//  End -->






// 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;