// JavaScript Document<!--
if (TransMenu.isSupported()) {
var ms = new TransMenuSet(TransMenu.direction.down, 0,0, TransMenu.reference.bottomLeft);
var menu36 = ms.addMenu(document.getElementById("menu36"));
 menu36.addItem("Industrial Cleaning", "industrial_cleaning.php", "0");
menu36.addItem("Pipe Cleaning", "pipe_cleaning.php", "0");
menu36.addItem("Hydro Blasting", "hydro_blasting.php", "0");
menu36.addItem("Hydro Excavation", "hydro_excavation.php", "0");
menu36.addItem("Manhole Rehab", "manhole_rehab.php", "0");
menu36.addItem("Video Inspection", "video_inspection.php", "0");
function init() {
if (TransMenu.isSupported()) {
TransMenu.initialize();
document.getElementById("menu17").onmouseover = function() {
ms.hideCurrent();
this.className = "hover";
}
document.getElementById("menu17").onmouseout = function() { this.className = ""; }
menu36.onactivate = function() {document.getElementById("menu36").className = "hover"; };
 menu36.ondeactivate = function() {document.getElementById("menu36").className = ""; };
 document.getElementById("menu33").onmouseover = function() {
ms.hideCurrent();
this.className = "hover";
}
document.getElementById("menu33").onmouseout = function() { this.className = ""; }
document.getElementById("menu43").onmouseover = function() {
ms.hideCurrent();
this.className = "hover";
}
document.getElementById("menu43").onmouseout = function() { this.className = ""; }
}}
TransMenu.dingbatSize = 0;
TransMenu.spacerGif = "";
TransMenu.dingbatOn = "";
TransMenu.dingbatOff = ""; 
TransMenu.sub_indicator = false;
TransMenu.menuPadding = 0;
TransMenu.itemPadding = 0;
TransMenu.shadowSize = 2;
TransMenu.shadowOffset = 3;
TransMenu.shadowColor = "#888";
TransMenu.shadowPng = "images/transmenu/grey-40.png";
TransMenu.backgroundColor = "#eeeeee";
TransMenu.backgroundPng = "images/transmenu/white-90.png";
TransMenu.hideDelay = 600;
TransMenu.slideTime = 300;
TransMenu.selecthack = 0;
TransMenu.autoposition = 0;
TransMenu.renderAll();
if ( typeof window.addEventListener != "undefined" )
window.addEventListener( "load", init, false );
else if ( typeof window.attachEvent != "undefined" ) {
window.attachEvent( "onload", init);
}else{
if ( window.onload != null ) {
var oldOnload = window.onload;
window.onload = function ( e ) {
oldOnload( e );
init();
}
}else
window.onload = init();
}
}
-->
