<!--//--><![CDATA[//><!--
 
startList = function() {
    
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav_hover");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;
//--><!]]>

//// Right click disable functionality is not required by client. (It came in the Warranty Issues ref no.02029LBA)
//// In order to enable right click on website, we commented this section.
// var popup="Right-click is disabled"; 
//        function nope(go) 
//        { 
//            if (document.all) 
//            { 
//                if (event.button == 2) 
//                { 
//                    alert(popup); 
//                    return false; 
//                } 
//            } 
//            if (document.layers) 
//            { 
//                if (go.which == 3)
//                { 
//                    alert(popup); 
//                    return false; 
//                } 
//            } 
//        } 
        if (document.layers) 
        { 
            document.captureEvents(Event.mousedown); 
        } 
        //document.onmousedown=nope; 