// JavaScript Document




//Drop Down Navigation Menu
//This code creates the functionality of the navigation drop down menu
//It creates a submenu under the services link that includes links to various types of services offered by the company
startMenu = function() {
if (document.all&&document.getElementById) {
cssmenu = document.getElementById("topmenu");
for (i=0; i<cssmenu.childNodes.length; i++) {
node = cssmenu.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function(){                  
this.className=this.className.replace(" over", "")
}
}
}
}
}

if (window.attachEvent)
window.attachEvent("onload", startMenu)
else
window.onload=startMenu;





