<!--// The syntax for using these functions in an HTML document are as follows://// <a href="#" onMouseOver="imgOn('img2')" onMouseOut="imgOff('img2')">// <img src="file.gif" name="img2" width="60" height="60" border="0"></a>var loaded=0;//set an array for the to turn on the appropriate icon on inside pagesvar iconArray = new Array();		iconArray[0] = "search";//iconArray[1] = "distributors";//iconArray[2] = "buy";iconArray[1] = "staple_guns";//iconArray[4] = "tackers";iconArray[2] = "glueguns";iconArray[3] = "electric";//iconArray[7] = "riveters";//set an array for the to turn on the appropriate nav button				var webSections = new Array();		webSections[0] = "our_company";webSections[1] = "tools";webSections[2] = "accessories";webSections[3] = "user_support";//webSections[4] = "distributors";//webSections[4] = "feedback";var toolsNav = new Array();		toolsNav[0] = "specifics";toolsNav[1] = "use_instructions";toolsNav[2] = "projects";toolsNav[3] = "demo_videos";toolsNav[4] = "inside_accessories";toolsNav[5] = "owners_manual";toolsNav[6] = "feedback";var companyNav = new Array();		companyNav[0] = "about_company";companyNav[1] = "press_releases";companyNav[2] = "outside_links";companyNav[3] = "contact_info";companyNav[4] = "awards";var feedbackNav = new Array();		feedbackNav[0] = "submit_feedback";feedbackNav[1] = "submit_project";var currentPage = '';// loop through the section array to identify the subscript of the section we're in                for (i=0; i < webSections.length; i++) {                	if (webSections[i] == section) {		i++;		currentPage = "img" + i;	}}if ((is_nav3up) || (is_ie4up)) br = "good";else br = "bad";if (br == "good") {				var pathtoRoot = "/";						//these are for the horizontal inside nav			img1on = new Image(); img1on.src = pathtoRoot + "images/our_company_horiz_on.gif";	        img1off = new Image(); img1off.src = pathtoRoot + "images/our_company_horiz_off.gif";			img2on = new Image(); img2on.src = pathtoRoot + "images/tools_horiz_on.gif";	        img2off = new Image(); img2off.src = pathtoRoot + "images/tools_horiz_off.gif";			img3on = new Image(); img3on.src = pathtoRoot + "images/accessories_horiz_on.gif";	        img3off = new Image(); img3off.src = pathtoRoot + "images/accessories_horiz_off.gif";			img4on = new Image(); img4on.src = pathtoRoot + "images/user_support_horiz_on.gif";	        img4off = new Image(); img4off.src = pathtoRoot + "images/user_support_horiz_off.gif";			//img5on = new Image(); img5on.src = pathtoRoot + "images/distributors_horiz_on.gif";	        //img5off = new Image(); img5off.src = pathtoRoot + "images/distributors_horiz_off.gif";			img5on = new Image(); img5on.src = pathtoRoot + "images/feedback_horiz_on.gif";	        img5off = new Image(); img5off.src = pathtoRoot + "images/feedback_horiz_off.gif";	        	        			/*img21on = new Image(); img21on.src = pathtoRoot + "images/distributors_horiz_on.gif";	        img22off = new Image(); img5off.src = pathtoRoot + "images/distributors_horiz_off.gif";			img23on = new Image(); img6on.src = pathtoRoot + "images/feedback_horiz_on.gif";	        img24off = new Image(); img6off.src = pathtoRoot + "images/feedback_horiz_off.gif";	        			img25on = new Image(); img5on.src = pathtoRoot + "images/distributors_horiz_on.gif";	        img26off = new Image(); img5off.src = pathtoRoot + "images/distributors_horiz_off.gif";			img27on = new Image(); img6on.src = pathtoRoot + "images/feedback_horiz_on.gif";	        img28off = new Image(); img6off.src = pathtoRoot + "images/feedback_horiz_off.gif";	*/	        	        }function imgOn(imgName) {        if (br == "good") {                document[imgName].src = eval(imgName + "on.src");                //document.hold.src = eval(imgName + "hold.src");                                //window.status = eval(imgName + "copy");       		//alert(imgName);	       }}function imgOff(imgName) {        if (br == "good") {                                if (imgName == currentPage) {                	document[imgName].src = eval(imgName + "on.src");	            } else { 	            	document[imgName].src = eval(imgName + "off.src");	            }  				                     }}function openWin(URL) {				newWindow=window.open(URL , "thenewwindow", "width=640,height=500,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no");	newWindow.opener.name= "main";	newWindow.focus();		 			}function loadOpener(URL) {	opener.location.href = URL;	self.blur();}var isNS  = ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion)) >= 4);var browser = (isNS) ? 'NS' : 'IE';var menu1;var menu2;var menu3;var menu4;var menu5;var menu6;        var loaded=0;function init() {	if (browser == 'NS') {			menu1 = document.companynav;		menu2 = document.toolsnav;		menu3 = document.accessoriesnav;		menu4 = document.usernav;		//menu5 = document.distributorsnav;		menu5 = document.feedbacknav;                	} else if (browser == 'IE') {				menu1 = companynav.style;		menu2 = toolsnav.style;		menu3 = accessoriesnav.style;		menu4 = usernav.style;		//menu5 = distributorsnav.style;		//menu5 = feedbacknav.style;    }	}function show(showobj) {	if (browser == 'NS') showobj.visibility = "show"	else if (browser == 'IE') showobj.visibility = "visible"	// alert(showobj);}function hide(hideobj) {		if (browser == 'NS') hideobj.visibility = "hide"		else if (browser == 'IE') hideobj.visibility = "hidden"        }function hideAll() {	if ((browser == 'NS') || (browser == 'IE')) {	    		hide(menu1); hide(menu2); hide(menu3); hide(menu4);	}}var TimeOutNum = 0;function SetTimer() {	TimeOutNum = setTimeout('hideAll();',1000);	}var TimeOutNum2 = 0;function SetTimer2(image) {	TimeOutNum2 = setTimeout('imgOff(\"'+ image +'\");',1000);	}loaded = 0;//-->