//DROP DOWN MENU
/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
//Contents for "OPEN A COMMERCIAL ACCOUNT"
var menu1=new Array()
menu1[0]='&nbsp;<font  class="menuTextTop"><b>Open a Commercial Account</b></font>'
menu1[1]='<a href="/catalog/register.asp" class="menuTextTop">1. Existing Outwater Customer - <br>&nbsp;Obtain Internet Login Information</a>'
menu1[2]='<a href="/account.asp" class="menuTextTop">2. Open a New Commercial Account</a>'
//Contents for PRODUCT PDF PAGES ONLY (SHOULD BE THE SAME AS ABOVE, THE MENU POSITIONING IS DIFFERENT
var menu2=new Array()
menu2[0]='&nbsp;&nbsp;<span onclick="javascript:window.location.href=\'/catalog/register.asp\'" onmouseover="this.style.cursor=\'hand\'" style="cursor:pointer;cursor:hand;">1. Existing Customer</span>&nbsp;<b>|</b>&nbsp;<span onclick="javascript:window.location.href=\'/account.asp\'" onmouseover="this.style.cursor=\'hand\'" style="cursor:pointer;cursor:hand;">2. Open a New Commercial Account</span>'
//menu2[1]='<a href="/account.asp" class="menuTextTop">2. Open a New Commercial Account</a>'
//THIS WILL HIGHLIGHT THE CATEGORY WHILE THE MOUSEOVER EXISTS
function highlightCategory(name)
{
	switch(name)
	{
		case knobs:
			document.getElementById("lnkKnobs").style.color="#000000";
			break;
		case kitchen:
			document.getElementById("lnkKitchen").style.color="#000000";
			break;
		case cabinet:
			document.getElementById("lnkCabinet").style.color="#000000";
			break;
		case hinges:
			document.getElementById("lnkHinges").style.color="#000000";
			break;
		case furniture:
			document.getElementById("lnkFurniture").style.color="#000000";
			break;
		case brackets:
			document.getElementById("lnkBrackets").style.color="#000000";
			break;
		case slides:
			document.getElementById("lnkSlides").style.color="#000000";
			break;
		case general:
			document.getElementById("lnkGeneral").style.color="#000000";
			break;
		case catches:
			document.getElementById("lnkCatches").style.color="#000000";
			break;
		case door:
			document.getElementById("lnkDoor").style.color="#000000";
			break;
		case wood:
			document.getElementById("lnkWood").style.color="#000000";
			break;
		case power:
			document.getElementById("lnkPower").style.color="#000000";
			break;
	}
}
function clearHighlighted(name)
{
			document.getElementById("lnkKnobs").style.color="#666666";
			document.getElementById("lnkKitchen").style.color="#666666";
			document.getElementById("lnkCabinet").style.color="#666666";
			document.getElementById("lnkHinges").style.color="#666666";
			document.getElementById("lnkFurniture").style.color="#666666";
			document.getElementById("lnkBrackets").style.color="#666666";
			document.getElementById("lnkSlides").style.color="#666666";
			document.getElementById("lnkGeneral").style.color="#666666";
			document.getElementById("lnkCatches").style.color="#666666";
			document.getElementById("lnkDoor").style.color="#666666";
			document.getElementById("lnkWood").style.color="#666666";
			document.getElementById("lnkPower").style.color="#666666";
}
//END MENU
//**********************************************************
var menuwidth='165px' //default menu width
var menubgcolor='#ffffcc'  //menu bgcolor
var menubgcolorl='#dddddd' //left menu bgcolor
var disappeardelay=250	//menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?
/////No further editting needed
var ie4=document.all
var ns6=document.getElementById&&!document.all
if (ie4||ns6)
{
	document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')
	document.write('<div id="dropmenudivl" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolorl+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')
	document.write('<div id="dropmenudiv2" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')
}
function getposOffset(what, offsettype, leftOffset){
	var totaloffset=(offsettype=="left")? what.offsetLeft + leftOffset : what.offsetTop;
	var parentEl=what.offsetParent;
	while (parentEl!=null){
		totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
		parentEl=parentEl.offsetParent;
	}
	return totaloffset;
}
function ShowObject(visible)
{
	dropmenuobj=document.getElementById? document.getElementById("dropmenudiv2") : "dropmenudiv2"
	dropmenuobj.style.visibility=visible;
}
function showhide(obj, e, visible, hidden, menuwidth, bDelayShow){
	if (ie4||ns6)
	dropmenuobj.style.left=dropmenuobj.style.top="-500px"
	if (menuwidth!=""){
		dropmenuobj.widthobj=dropmenuobj.style
		dropmenuobj.widthobj.width=menuwidth
	}
	if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
	{
		//Delay the showing of the menu
		if(bDelayShow)
		{
			setTimeout("ShowObject('" + visible + "')", 10);
		}
		else
		{
			obj.visibility=visible;
		}
	}
	else if (e.type=="click")
		obj.visibility=hidden
}
function iecompattest(){
	return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
function clearbrowseredge(obj, whichedge){
	var edgeoffset=0
	if (whichedge=="rightedge"){
		var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
		dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
		if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
			edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
	}
	else{
		var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
		var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
		dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
		if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
			edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
			if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
				edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
		}
	}
	return edgeoffset
}
function populatemenu(what){
	if (ie4||ns6)
	dropmenuobj.innerHTML=what.join("")
}
function dropdownmenu(obj, e, menucontents, menuwidth){
	
	if (window.event) 
		event.cancelBubble=true
	else if (e.stopPropagation) e.stopPropagation()
		clearhidemenu()
	
	clearHighlighted();
	highlightCategory(menucontents)
	
	if(menucontents==menu1)
		dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : "dropmenudiv";
	else if(menucontents==menu2)
		dropmenuobj=document.getElementById? document.getElementById("dropmenudiv2") : "dropmenudiv2";
	else
		dropmenuobj=document.getElementById? document.getElementById("dropmenudivl") : "dropmenudivl";
	populatemenu(menucontents)
	
	//alert(document.getElementById("logoTable").offsetLeft);
	if (ie4||ns6){
		//alert(menucontents==menu2);
		showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth, menucontents==menu2? true:false)
		dropmenuobj.x=getposOffset(obj, "left", (menucontents==menu1||menucontents==menu2)? 100 : 235)
		dropmenuobj.y=getposOffset(obj, "top", 0)
		dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
		if(menucontents==menu2)
			dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight-20+"px"		
		else
		{
			var anchorInfo = getAnchorPosition(obj.id);
			dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight-((menucontents==menu1||menucontents==menu2)? 0 : (anchorInfo.y + dropmenuobj.offsetHeight + 15 < GetWindowHeight())? 15 : -15)+"px"
		}
			
		dropmenuobj.style	
	}
	
	
	//alert(anchorInfo.y  + dropmenuobj.offsetHeight + "-" + GetWindowHeight());
	return clickreturnvalue()
}
function clickreturnvalue(){
	if (ie4||ns6) 
		return false
	else 
		return true
}
function contains_ns6(a, b) {
	while (b.parentNode)
		if ((b = b.parentNode) == a)
			return true;
	return false;
}
function dynamichide(e){
	if (ie4&&!dropmenuobj.contains(e.toElement))
		delayhidemenu()
	else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
		delayhidemenu()
}
function hidemenu(e){
	if (typeof dropmenuobj!="undefined"){
		if (ie4||ns6)
		dropmenuobj.style.visibility="hidden"
	}
	clearHighlighted();
}
function delayhidemenu(){
	if (ie4||ns6)
		delayhide=setTimeout("hidemenu()",disappeardelay)
}
function clearhidemenu(){
	if (typeof delayhide!="undefined")
		clearTimeout(delayhide);
}
function GetOffset(offsetTop)
{
	alert(offsetTop + "-" + GetWindowHeight()/2);
	if(offsetTop>GetWindowHeight()/2)
		return -15;
	else
		return 15;
	//alert(dropmenuobj.offsetHeight);
	//alert(dropmenuobj.offsetTop);
	//alert(GetWindowHeight());	
}
function GetWindowHeight()
{
	var winH = 460;
	if (parseInt(navigator.appVersion)>3) {
	 if (navigator.appName=="Netscape") {
	  winH = window.innerHeight;
	 }
	 if (navigator.appName.indexOf("Microsoft")!=-1) {
	  winH = document.body.offsetHeight;
	 }
	}
	return winH;
}
function getAnchorWindowPosition(anchorname) {
	var coordinates=getAnchorPosition(anchorname);
	var x=0;
	var y=0;
	if (document.getElementById) {
		if (isNaN(window.screenX)) {
			x=coordinates.x-document.body.scrollLeft+window.screenLeft;
			y=coordinates.y-document.body.scrollTop+window.screenTop;
			}
		else {
			x=coordinates.x+window.screenX+(window.outerWidth-window.innerWidth)-window.pageXOffset;
			y=coordinates.y+window.screenY+(window.outerHeight-24-window.innerHeight)-window.pageYOffset;
			}
		}
	else if (document.all) {
		x=coordinates.x-document.body.scrollLeft+window.screenLeft;
		y=coordinates.y-document.body.scrollTop+window.screenTop;
		}
	else if (document.layers) {
		x=coordinates.x+window.screenX+(window.outerWidth-window.innerWidth)-window.pageXOffset;
		y=coordinates.y+window.screenY+(window.outerHeight-24-window.innerHeight)-window.pageYOffset;
		}
	coordinates.x=x;
	coordinates.y=y;
	return coordinates;
}
function getAnchorPosition(anchorname) {
	// This function will return an Object with x and y properties
	var useWindow=false;
	var coordinates=new Object();
	var x=0,y=0;
	// Browser capability sniffing
	var use_gebi=false, use_css=false, use_layers=false;
	if (document.getElementById) { use_gebi=true; }
	else if (document.all) { use_css=true; }
	else if (document.layers) { use_layers=true; }
	// Logic to find position
 	if (use_gebi && document.all) {
		x=AnchorPosition_getPageOffsetLeft(document.all[anchorname]);
		y=AnchorPosition_getPageOffsetTop(document.all[anchorname]);
		}
	else if (use_gebi) {
		var o=document.getElementById(anchorname);
		x=AnchorPosition_getPageOffsetLeft(o);
		y=AnchorPosition_getPageOffsetTop(o);
		}
 	else if (use_css) {
		x=AnchorPosition_getPageOffsetLeft(document.all[anchorname]);
		y=AnchorPosition_getPageOffsetTop(document.all[anchorname]);
		}
	else if (use_layers) {
		var found=0;
		for (var i=0; i<document.anchors.length; i++) {
			if (document.anchors[i].name==anchorname) { found=1; break; }
			}
		if (found==0) {
			coordinates.x=0; coordinates.y=0; return coordinates;
			}
		x=document.anchors[i].x;
		y=document.anchors[i].y;
		}
	else {
		coordinates.x=0; coordinates.y=0; return coordinates;
		}
	coordinates.x=x;
	coordinates.y=y;
	return coordinates;
	}
function AnchorPosition_getPageOffsetLeft (el) {
	var ol=el.offsetLeft;
	while ((el=el.offsetParent) != null) { ol += el.offsetLeft; }
	return ol;
	}
function AnchorPosition_getWindowOffsetLeft (el) {
	return AnchorPosition_getPageOffsetLeft(el)-document.body.scrollLeft;
	}	
function AnchorPosition_getPageOffsetTop (el) {
	var ot=el.offsetTop;
	while((el=el.offsetParent) != null) { ot += el.offsetTop; }
	return ot;
	}
function AnchorPosition_getWindowOffsetTop (el) {
	return AnchorPosition_getPageOffsetTop(el)-document.body.scrollTop;
	}
if (hidemenu_onclick=="yes")

//All contents from here on is generated by 'DBSNWIF'

//Contents for "Knobs and Pulls for Cabinets"
var knobs=new Array()

//Key = '[0] = AMEROCK CABINET HARDWARE                                                   '
knobs[0]='<a href="/catalog/indexes/INDEX-00-00.asp" class="menuText">AMEROCK CABINET HARDWARE</a>'

//Key = '[1] = APPLIANCE, PANTRY & REFRIGERATOR HANDLES                                   '
knobs[1]='<a href="/catalog/form08.asp?page=0094&pagelist=009400950109&menupage=INDEX-00-01.HTM&menuheader=<Knobs and Pulls for Cabinets - APPLIANCE, PANTRY %26 REFRIGERATOR HANDLES - APPLIANCE, PANTRY & REFRIGERATOR HANDLES" class="menuText">APPLIANCE, PANTRY & REFRIGERATOR HANDLES</a>'

//Key = '[2] = ASHLEY HARDWARE COLLECTION                                                 '
knobs[2]='<a href="/catalog/form08.asp?page=0060&pagelist=0060006100620063&menupage=INDEX-00-02.HTM&menuheader=<Knobs and Pulls for Cabinets - ASHLEY HARDWARE COLLECTION - ASHLEY HARDWARE COLLECTION" class="menuText">ASHLEY HARDWARE COLLECTION</a>'

//Key = '[3] = BELWITH-KEELER CABINET HARDWARE                                            '
knobs[3]='<a href="/catalog/indexes/INDEX-00-03.asp" class="menuText">BELWITH-KEELER CABINET HARDWARE</a>'

//Key = '[4] = COLONIAL BRONZE CABINET HARDWARE                                           '
knobs[4]='<a href="/catalog/indexes/INDEX-00-04.asp" class="menuText">COLONIAL BRONZE CABINET HARDWARE</a>'

//Key = '[5] = KNOBS and PULLS, Full Listing                                              '
knobs[5]='<a href="/catalog/indexes/INDEX-00-05.asp" class="menuText">KNOBS and PULLS, Full Listing</a>'

//Key = '[6] = PERIOD BRASS CABINET HARDWARE                                              '
knobs[6]='<a href="/catalog/indexes/INDEX-00-06.asp" class="menuText">PERIOD BRASS CABINET HARDWARE</a>'

//Key = '[7] = SCHAUB CABINET HARDWARE                                                    '
knobs[7]='<a href="/catalog/form08.asp?page=0096&pagelist=0096009700980099010001010102010301040105&menupage=INDEX-00-07.HTM&menuheader=<Knobs and Pulls for Cabinets - SCHAUB CABINET HARDWARE - SCHAUB CABINET HARDWARE" class="menuText">SCHAUB CABINET HARDWARE</a>'

//Key = '[8] = SUGATSUNE PRODUCTS                                                         '
knobs[8]='<a href="/catalog/indexes/INDEX-00-08.asp" class="menuText">SUGATSUNE PRODUCTS</a>'

//Element for "Full Category Index"
knobs[9]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-00.asp" class="menuText">See Full Category Index >>></a></div>'

//Contents for "Kitchen, Bath and Household Accessories"
var kitchen=new Array()

//Key = '[0] = COUNTERTOPS                                                                '
kitchen[0]='<a href="/catalog/indexes/INDEX-01-00.asp" class="menuText">COUNTERTOPS</a>'

//Key = '[1] = DRAWER ORGANIZERS                                                          '
kitchen[1]='<a href="/catalog/indexes/INDEX-01-01.asp" class="menuText">DRAWER ORGANIZERS</a>'

//Key = '[2] = ELKAY SINKS: An Introduction                                               '
kitchen[2]='<a href="/catalog/form08.asp?page=0218&pagelist=0218021902200221022202230224022502260227&menupage=INDEX-01-02.HTM&menuheader=<Kitchen, Bath and Household Accessories - ELKAY SINKS: An Introduction - ELKAY SINKS: An Introduction" class="menuText">ELKAY SINKS: An Introduction</a>'

//Key = '[3] = FAUCETS, Kitchen                                                           '
kitchen[3]='<a href="/catalog/form08.asp?page=0230&pagelist=023002310232&menupage=INDEX-01-03.HTM&menuheader=<Kitchen, Bath and Household Accessories - FAUCETS, Kitchen - FAUCETS, Kitchen" class="menuText">FAUCETS, Kitchen</a>'

//Key = '[4] = GARBAGE CONTAINERS                                                         '
kitchen[4]='<a href="/catalog/indexes/INDEX-01-04.asp" class="menuText">GARBAGE CONTAINERS</a>'

//Key = '[5] = HAMPERS, Clothes                                                           '
kitchen[5]='<a href="/catalog/form08.asp?page=0214&pagelist=021402150216&menupage=INDEX-01-05.HTM&menuheader=<Kitchen, Bath and Household Accessories - HAMPERS, Clothes - HAMPERS, Clothes" class="menuText">HAMPERS, Clothes</a>'

//Key = '[6] = IRONING CENTERS                                                            '
kitchen[6]='<a href="/catalog/indexes/INDEX-01-06.asp" class="menuText">IRONING CENTERS</a>'

//Key = '[7] = KITCHEN ACCESSORIES, Full Listing                                          '
kitchen[7]='<a href="/catalog/indexes/INDEX-01-07.asp" class="menuText">KITCHEN ACCESSORIES, Full Listing</a>'

//Key = '[8] = LIBRARY ROLLING LADDERS & ACCESSORIES                                      '
kitchen[8]='<a href="/catalog/indexes/INDEX-01-08.asp" class="menuText">LIBRARY ROLLING LADDERS & ACCESSORIES</a>'

//Key = '[9] = MANTLES, FIREPLACE                                                         '
kitchen[9]='<a href="/catalog/form08.asp?page=0022&pagelist=00220023&menupage=INDEX-01-09.HTM&menuheader=<Kitchen, Bath and Household Accessories - MANTLES, FIREPLACE - MANTLES, FIREPLACE" class="menuText">MANTLES, FIREPLACE</a>'

//Key = '[10] = PANTRY STORAGE SYSTEMS                                                     '
kitchen[10]='<a href="/catalog/indexes/INDEX-01-10.asp" class="menuText">PANTRY STORAGE SYSTEMS</a>'

//Element for "Full Category Index"
kitchen[11]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-01.asp" class="menuText">See Full Category Index >>></a></div>'

//Contents for "Cabinet, Drawer & Desk Organizers and Lighting"
var cabinet=new Array()

//Key = '[0] = COMPUTER TRAYS & ACCESSORIES                                               '
cabinet[0]='<a href="/catalog/indexes/INDEX-02-00.asp" class="menuText">COMPUTER TRAYS & ACCESSORIES</a>'

//Key = '[1] = DESK ORGANIZERS                                                            '
cabinet[1]='<a href="/catalog/indexes/INDEX-02-01.asp" class="menuText">DESK ORGANIZERS</a>'

//Key = '[2] = ENTERTAINMENT CENTERS                                                      '
cabinet[2]='<a href="/catalog/indexes/INDEX-02-02.asp" class="menuText">ENTERTAINMENT CENTERS</a>'

//Key = '[3] = FILING SYSTEMS for Drawers                                                 '
cabinet[3]='<a href="/catalog/form08.asp?page=0268&pagelist=0268026902700271027202730274&menupage=INDEX-02-03.HTM&menuheader=<Cabinet, Drawer %26 Desk Organizers and Lighting - FILING SYSTEMS for Drawers - FILING SYSTEMS for Drawers" class="menuText">FILING SYSTEMS for Drawers</a>'

//Key = '[4] = HERA LIGHTING                                                              '
cabinet[4]='<a href="/catalog/indexes/INDEX-02-04.asp" class="menuText">HERA LIGHTING</a>'

//Key = '[5] = LID SUPPORTS: An Introduction                                              '
cabinet[5]='<a href="/catalog/indexes/INDEX-02-05.asp" class="menuText">LID SUPPORTS: An Introduction</a>'

//Key = '[6] = LIGHTING FOR CABINETS: An Introduction                                     '
cabinet[6]='<a href="/catalog/form08.asp?page=0308&pagelist=0308030903100311031203130314031503160317&menupage=INDEX-02-06.HTM&menuheader=<Cabinet, Drawer %26 Desk Organizers and Lighting - LIGHTING FOR CABINETS: An Introduction - LIGHTING FOR CABINETS: An Introduction" class="menuText">LIGHTING FOR CABINETS: An Introduction</a>'

//Key = '[7] = SWIVELS                                                                    '
cabinet[7]='<a href="/catalog/indexes/INDEX-02-07.asp" class="menuText">SWIVELS</a>'

//Key = '[8] = TV LIFTS, SWIVELS & MOUNTING BRACKETS                                      '
cabinet[8]='<a href="/catalog/indexes/INDEX-02-08.asp" class="menuText">TV LIFTS, SWIVELS & MOUNTING BRACKETS</a>'

//Element for "Full Category Index"
cabinet[9]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-02.asp" class="menuText">See Full Category Index >>></a></div>'

//Contents for "Hinges for Cabinets, Furniture and Doors"
var hinges=new Array()

//Key = '[0] = CABINET                                                                    '
hinges[0]='<a href="/catalog/indexes/INDEX-03-00.asp" class="menuText">CABINET</a>'

//Key = '[1] = EUROPEAN CONCEALED HINGES                                                  '
hinges[1]='<a href="/catalog/form08.asp?page=0380&pagelist=0380038103820383038403850386038703880389&menupage=INDEX-03-01.HTM&menuheader=<Hinges for Cabinets, Furniture and Doors - EUROPEAN CONCEALED HINGES - EUROPEAN CONCEALED HINGES" class="menuText">EUROPEAN CONCEALED HINGES</a>'

//Key = '[2] = FLAP & LID HINGES                                                          '
hinges[2]='<a href="/catalog/form08.asp?page=0345&pagelist=03450346&menupage=INDEX-03-02.HTM&menuheader=<Hinges for Cabinets, Furniture and Doors - FLAP %26 LID HINGES - FLAP & LID HINGES" class="menuText">FLAP & LID HINGES</a>'

//Key = '[3] = GRASS AMERICA                                                              '
hinges[3]='<a href="/catalog/indexes/INDEX-03-03.asp" class="menuText">GRASS AMERICA</a>'

//Key = '[4] = HINGES, Full Listing                                                       '
hinges[4]='<a href="/catalog/indexes/INDEX-03-04.asp" class="menuText">HINGES, Full Listing</a>'

//Key = '[5] = INSTITUTIONAL and CASEWORK HINGES                                          '
hinges[5]='<a href="/catalog/form08.asp?page=0360&pagelist=0360036103620363&menupage=INDEX-03-05.HTM&menuheader=<Hinges for Cabinets, Furniture and Doors - INSTITUTIONAL and CASEWORK HINGES - INSTITUTIONAL and CASEWORK HINGES" class="menuText">INSTITUTIONAL and CASEWORK HINGES</a>'

//Key = '[6] = INVISIBLE HINGES (SOSS)                                                    '
hinges[6]='<a href="/catalog/form08.asp?page=0352&pagelist=0352035303540355035603570358&menupage=INDEX-03-06.HTM&menuheader=<Hinges for Cabinets, Furniture and Doors - INVISIBLE HINGES (SOSS) - INVISIBLE HINGES (SOSS)" class="menuText">INVISIBLE HINGES (SOSS)</a>'

//Key = '[7] = PIANO (Continuous) HINGES                                                  '
hinges[7]='<a href="/catalog/form08.asp?page=0364&pagelist=03640365&menupage=INDEX-03-07.HTM&menuheader=<Hinges for Cabinets, Furniture and Doors - PIANO (Continuous) HINGES - PIANO (Continuous) HINGES" class="menuText">PIANO (Continuous) HINGES</a>'

//Key = '[8] = STAINLESS STEEL                                                            '
hinges[8]='<a href="/catalog/indexes/INDEX-03-08.asp" class="menuText">STAINLESS STEEL</a>'

//Element for "Full Category Index"
hinges[9]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-03.asp" class="menuText">See Full Category Index >>></a></div>'

//Contents for "Casters, Furniture Legs, Table Legs, Table Bases"
var furniture=new Array()

//Key = '[0] = CASTERS                                                                    '
furniture[0]='<a href="/catalog/indexes/INDEX-04-00.asp" class="menuText">CASTERS</a>'

//Key = '[1] = FURNITURE                                                                  '
furniture[1]='<a href="/catalog/indexes/INDEX-04-01.asp" class="menuText">FURNITURE</a>'

//Key = '[2] = GLIDES                                                                     '
furniture[2]='<a href="/catalog/indexes/INDEX-04-02.asp" class="menuText">GLIDES</a>'

//Key = '[3] = LEGS                                                                       '
furniture[3]='<a href="/catalog/indexes/INDEX-04-03.asp" class="menuText">LEGS</a>'

//Key = '[4] = LEVELERS                                                                   '
furniture[4]='<a href="/catalog/indexes/INDEX-04-04.asp" class="menuText">LEVELERS</a>'

//Key = '[5] = MOVER'S BLANKET                                                            '
furniture[5]='<a href="/catalog/form08.asp?page=0426&pagelist=04261114&menupage=INDEX-04-05.HTM&menuheader=<Casters, Furniture Legs, Table Legs, Table Bases - MOVER\'S BLANKET - MOVER\'S BLANKET" class="menuText">MOVER\'S BLANKET</a>'

//Key = '[6] = TABLE                                                                      '
furniture[6]='<a href="/catalog/indexes/INDEX-04-06.asp" class="menuText">TABLE</a>'

//Element for "Full Category Index"
furniture[7]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-04.asp" class="menuText">See Full Category Index >>></a></div>'

//Contents for "Brackets, Standards, Pilaster, Tubing & Flanges"
var brackets=new Array()

//Key = '[0] = BAR BRACKETS, FITTINGS, CAPS & TUBING                                      '
brackets[0]='<a href="/catalog/form08.asp?page=0542&pagelist=05420543054405450546054705480549055&menupage=INDEX-05-00.HTM&menuheader=<Brackets, Standards, Pilaster, Tubing %26 Flanges - BAR BRACKETS, FITTINGS, CAPS %26 TUBING - BAR BRACKETS, FITTINGS, CAPS & TUBING" class="menuText">BAR BRACKETS, FITTINGS, CAPS & TUBING</a>'

//Key = '[1] = BRACKET                                                                    '
brackets[1]='<a href="/catalog/indexes/INDEX-05-01.asp" class="menuText">BRACKET</a>'

//Key = '[2] = CLOSET                                                                     '
brackets[2]='<a href="/catalog/indexes/INDEX-05-02.asp" class="menuText">CLOSET</a>'

//Key = '[3] = FLANGES for Round and Oval Tubing                                          '
brackets[3]='<a href="/catalog/indexes/INDEX-05-03.asp" class="menuText">FLANGES for Round and Oval Tubing</a>'

//Key = '[4] = HANDRAIL BRACKETS                                                          '
brackets[4]='<a href="/catalog/form08.asp?page=0548&pagelist=054805540555&menupage=INDEX-05-04.HTM&menuheader=<Brackets, Standards, Pilaster, Tubing %26 Flanges - HANDRAIL BRACKETS - HANDRAIL BRACKETS" class="menuText">HANDRAIL BRACKETS</a>'

//Key = '[5] = RESTAURANT SUPPLIES                                                        '
brackets[5]='<a href="/catalog/indexes/INDEX-05-05.asp" class="menuText">RESTAURANT SUPPLIES</a>'

//Key = '[6] = SHELF                                                                      '
brackets[6]='<a href="/catalog/indexes/INDEX-05-06.asp" class="menuText">SHELF</a>'

//Key = '[7] = SLAT WALL BRACKETS                                                         '
brackets[7]='<a href="/catalog/form08.asp?page=0528&pagelist=&menupage=INDEX-05-07.HTM&menuheader=<Brackets, Standards, Pilaster, Tubing %26 Flanges - SLAT WALL BRACKETS - SLAT WALL BRACKETS" class="menuText">SLAT WALL BRACKETS</a>'

//Key = '[8] = STANDARDS and BRACKETS                                                     '
brackets[8]='<a href="/catalog/indexes/INDEX-05-08.asp" class="menuText">STANDARDS and BRACKETS</a>'

//Key = '[9] = TUBING                                                                     '
brackets[9]='<a href="/catalog/indexes/INDEX-05-09.asp" class="menuText">TUBING</a>'

//Element for "Full Category Index"
brackets[10]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-05.asp" class="menuText">See Full Category Index >>></a></div>'

//Contents for "Slides for Desks, Drawers and Furniture"
var slides=new Array()

//Key = '[0] = ACCURIDE                                                                   '
slides[0]='<a href="/catalog/indexes/INDEX-06-00.asp" class="menuText">ACCURIDE</a>'

//Key = '[1] = DRAWER SLIDES: 1. GENERAL USE                                              '
slides[1]='<a href="/catalog/indexes/INDEX-06-01.asp" class="menuText">DRAWER SLIDES: 1. GENERAL USE</a>'

//Key = '[2] = DRAWER SLIDES: 2. CONCEALED UNDERMOUNTED                                   '
slides[2]='<a href="/catalog/indexes/INDEX-06-02.asp" class="menuText">DRAWER SLIDES: 2. CONCEALED UNDERMOUNTED</a>'

//Key = '[3] = DRAWER SLIDES: 3. "EURO" EUROPEAN SLIDES                                   '
slides[3]='<a href="/catalog/indexes/INDEX-06-03.asp" class="menuText">DRAWER SLIDES: 3. "EURO" EUROPEAN SLIDES</a>'

//Key = '[4] = DRAWER SLIDES: 4. FLIPPER/PIVOTING SLIDES                                  '
slides[4]='<a href="/catalog/indexes/INDEX-06-04.asp" class="menuText">DRAWER SLIDES: 4. FLIPPER/PIVOTING SLIDES</a>'

//Key = '[5] = DRAWER SLIDES: 5. COMPUTER KEYBOARDS                                       '
slides[5]='<a href="/catalog/indexes/INDEX-06-05.asp" class="menuText">DRAWER SLIDES: 5. COMPUTER KEYBOARDS</a>'

//Key = '[6] = DRAWER SLIDES: 6. SPECIAL USES                                             '
slides[6]='<a href="/catalog/indexes/INDEX-06-06.asp" class="menuText">DRAWER SLIDES: 6. SPECIAL USES</a>'

//Key = '[7] = DRAWER SLIDES: 7. BRACKETS                                                 '
slides[7]='<a href="/catalog/indexes/INDEX-06-07.asp" class="menuText">DRAWER SLIDES: 7. BRACKETS</a>'

//Key = '[8] = DRAWER SLIDES: 8. MISCELLANEOUS ITEMS                                      '
slides[8]='<a href="/catalog/indexes/INDEX-06-08.asp" class="menuText">DRAWER SLIDES: 8. MISCELLANEOUS ITEMS</a>'

//Key = '[9] = HETTICH                                                                    '
slides[9]='<a href="/catalog/indexes/INDEX-06-09.asp" class="menuText">HETTICH</a>'

//Key = '[10] = KNAPE & VOGT                                                               '
slides[10]='<a href="/catalog/indexes/INDEX-06-10.asp" class="menuText">KNAPE & VOGT</a>'

//Element for "Full Category Index"
slides[11]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-06.asp" class="menuText">See Full Category Index >>></a></div>'

//Contents for "Wood Fasteners, Screws and General Hardware"
var general=new Array()

//Key = '[0] = ADJUSTERS, Drawer Front                                                    '
general[0]='<a href="/catalog/form08.asp?page=0734&pagelist=&menupage=INDEX-07-00.HTM&menuheader=<Wood Fasteners, Screws and General Hardware - ADJUSTERS, Drawer Front - ADJUSTERS, Drawer Front" class="menuText">ADJUSTERS, Drawer Front</a>'

//Key = '[1] = BITS                                                                       '
general[1]='<a href="/catalog/indexes/INDEX-07-01.asp" class="menuText">BITS</a>'

//Key = '[2] = CABINET HANGING SYSTEMS                                                    '
general[2]='<a href="/catalog/indexes/INDEX-07-02.asp" class="menuText">CABINET HANGING SYSTEMS</a>'

//Key = '[3] = CAM AND DOWEL FITTINGS                                                     '
general[3]='<a href="/catalog/form08.asp?page=0720&pagelist=0720072107220723&menupage=INDEX-07-03.HTM&menuheader=<Wood Fasteners, Screws and General Hardware - CAM AND DOWEL FITTINGS - CAM AND DOWEL FITTINGS" class="menuText">CAM AND DOWEL FITTINGS</a>'

//Key = '[4] = FASTENERS                                                                  '
general[4]='<a href="/catalog/indexes/INDEX-07-04.asp" class="menuText">FASTENERS</a>'

//Key = '[5] = JOINING DEVICES                                                            '
general[5]='<a href="/catalog/indexes/INDEX-07-05.asp" class="menuText">JOINING DEVICES</a>'

//Key = '[6] = POST HANGERS, Bed                                                          '
general[6]='<a href="/catalog/form08.asp?page=0724&pagelist=&menupage=INDEX-07-06.HTM&menuheader=<Wood Fasteners, Screws and General Hardware - POST HANGERS, Bed - POST HANGERS, Bed" class="menuText">POST HANGERS, Bed</a>'

//Key = '[7] = RTA FURNITURE FITTINGS                                                     '
general[7]='<a href="/catalog/form08.asp?page=0718&pagelist=071807190720072107220723&menupage=INDEX-07-07.HTM&menuheader=<Wood Fasteners, Screws and General Hardware - RTA FURNITURE FITTINGS - RTA FURNITURE FITTINGS" class="menuText">RTA FURNITURE FITTINGS</a>'

//Key = '[8] = SCREWS                                                                     '
general[8]='<a href="/catalog/indexes/INDEX-07-08.asp" class="menuText">SCREWS</a>'

//Element for "Full Category Index"
general[9]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-07.asp" class="menuText">See Full Category Index >>></a></div>'

//Contents for "Catches, Latches and Locks"
var catches=new Array()

//Key = '[0] = CATCHES & LATCHES                                                          '
catches[0]='<a href="/catalog/indexes/INDEX-08-00.asp" class="menuText">CATCHES & LATCHES</a>'

//Key = '[1] = CCL (CORBIN) LOCKS                                                         '
catches[1]='<a href="/catalog/indexes/INDEX-08-01.asp" class="menuText">CCL (CORBIN) LOCKS</a>'

//Key = '[2] = LOCKS, Full Listing                                                        '
catches[2]='<a href="/catalog/indexes/INDEX-08-02.asp" class="menuText">LOCKS, Full Listing</a>'

//Key = '[3] = MAGNETIC CATCHES & LOCKS                                                   '
catches[3]='<a href="/catalog/form08.asp?page=0802&pagelist=0802080608070808&menupage=INDEX-08-03.HTM&menuheader=<Catches, Latches and Locks - MAGNETIC CATCHES %26 LOCKS - MAGNETIC CATCHES & LOCKS" class="menuText">MAGNETIC CATCHES & LOCKS</a>'

//Key = '[4] = NATIONAL CABINET LOCKS                                                     '
catches[4]='<a href="/catalog/indexes/INDEX-08-04.asp" class="menuText">NATIONAL CABINET LOCKS</a>'

//Key = '[5] = SCHLAGE LOCKSET COLLECTION                                                 '
catches[5]='<a href="/catalog/indexes/INDEX-08-05.asp" class="menuText">SCHLAGE LOCKSET COLLECTION</a>'

//Element for "Full Category Index"
catches[6]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-08.asp" class="menuText">See Full Category Index >>></a></div>'

//Contents for "Door Hardware, Door Track, Window Hardware"
var door=new Array()

//Key = '[0] = BARN DOOR HARDWARE                                                         '
door[0]='<a href="/catalog/form08.asp?page=0923&pagelist=09230924&menupage=INDEX-09-00.HTM&menuheader=<Door Hardware, Door Track, Window Hardware - BARN DOOR HARDWARE - BARN DOOR HARDWARE" class="menuText">BARN DOOR HARDWARE</a>'

//Key = '[1] = BI-FOLDING DOORS                                                           '
door[1]='<a href="/catalog/indexes/INDEX-09-01.asp" class="menuText">BI-FOLDING DOORS</a>'

//Key = '[2] = BOLTS for DOORS                                                            '
door[2]='<a href="/catalog/indexes/INDEX-09-02.asp" class="menuText">BOLTS for DOORS</a>'

//Key = '[3] = CHANNELS, Track                                                            '
door[3]='<a href="/catalog/indexes/INDEX-09-03.asp" class="menuText">CHANNELS, Track</a>'

//Key = '[4] = CLOSERS for DOORS                                                          '
door[4]='<a href="/catalog/indexes/INDEX-09-04.asp" class="menuText">CLOSERS for DOORS</a>'

//Key = '[5] = DOOR                                                                       '
door[5]='<a href="/catalog/indexes/INDEX-09-05.asp" class="menuText">DOOR</a>'

//Key = '[6] = PNEUMATIC DOOR CLOSERS                                                     '
door[6]='<a href="/catalog/form08.asp?page=0938&pagelist=09380939094&menupage=INDEX-09-06.HTM&menuheader=<Door Hardware, Door Track, Window Hardware - PNEUMATIC DOOR CLOSERS - PNEUMATIC DOOR CLOSERS" class="menuText">PNEUMATIC DOOR CLOSERS</a>'

//Key = '[7] = POCKET DOOR                                                                '
door[7]='<a href="/catalog/indexes/INDEX-09-07.asp" class="menuText">POCKET DOOR</a>'

//Key = '[8] = SLIDING (Bi-Passing) DOORS                                                 '
door[8]='<a href="/catalog/indexes/INDEX-09-08.asp" class="menuText">SLIDING (Bi-Passing) DOORS</a>'

//Key = '[9] = STOPS for DOORS                                                            '
door[9]='<a href="/catalog/indexes/INDEX-09-09.asp" class="menuText">STOPS for DOORS</a>'

//Key = '[10] = TRACKS for DOORS                                                           '
door[10]='<a href="/catalog/indexes/INDEX-09-10.asp" class="menuText">TRACKS for DOORS</a>'

//Element for "Full Category Index"
door[11]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-09.asp" class="menuText">See Full Category Index >>></a></div>'

//Contents for "Wood Products, Glue, Caulk, Safety Equipment"
var wood=new Array()

//Key = '[0] = CAULK                                                                      '
wood[0]='<a href="/catalog/form08.asp?page=1026&pagelist=10261027&menupage=INDEX-10-00.HTM&menuheader=<Wood Products, Glue, Caulk, Safety Equipment - CAULK - CAULK" class="menuText">CAULK</a>'

//Key = '[1] = CLEANERS                                                                   '
wood[1]='<a href="/catalog/indexes/INDEX-10-01.asp" class="menuText">CLEANERS</a>'

//Key = '[2] = EDGEBANDING MATERIAL                                                       '
wood[2]='<a href="/catalog/indexes/INDEX-10-02.asp" class="menuText">EDGEBANDING MATERIAL</a>'

//Key = '[3] = FINISHING MATERIALS                                                        '
wood[3]='<a href="/catalog/indexes/INDEX-10-03.asp" class="menuText">FINISHING MATERIALS</a>'

//Key = '[4] = GLUE                                                                       '
wood[4]='<a href="/catalog/indexes/INDEX-10-04.asp" class="menuText">GLUE</a>'

//Key = '[5] = GRILLES                                                                    '
wood[5]='<a href="/catalog/indexes/INDEX-10-05.asp" class="menuText">GRILLES</a>'

//Key = '[6] = SAFETY EQUIPMENT: Eyes, Ears, Lungs                                        '
wood[6]='<a href="/catalog/indexes/INDEX-10-06.asp" class="menuText">SAFETY EQUIPMENT: Eyes, Ears, Lungs</a>'

//Key = '[7] = TAMBOUR WOOD DOORS                                                         '
wood[7]='<a href="/catalog/form08.asp?page=0186&pagelist=0186018701880189&menupage=INDEX-10-07.HTM&menuheader=<Wood Products, Glue, Caulk, Safety Equipment - TAMBOUR WOOD DOORS - TAMBOUR WOOD DOORS" class="menuText">TAMBOUR WOOD DOORS</a>'

//Key = '[8] = TAPE                                                                       '
wood[8]='<a href="/catalog/indexes/INDEX-10-08.asp" class="menuText">TAPE</a>'

//Key = '[9] = WOOD CARVINGS by Hand: An Introduction                                     '
wood[9]='<a href="/catalog/form08.asp?page=0001&pagelist=0001000200030004000500060007000800090010&menupage=INDEX-10-09.HTM&menuheader=<Wood Products, Glue, Caulk, Safety Equipment - WOOD CARVINGS by Hand: An Introduction - WOOD CARVINGS by Hand: An Introduction" class="menuText">WOOD CARVINGS by Hand: An Introduction</a>'

//Key = '[10] = WOOD PRODUCTS                                                              '
wood[10]='<a href="/catalog/indexes/INDEX-10-10.asp" class="menuText">WOOD PRODUCTS</a>'

//Element for "Full Category Index"
wood[11]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-10.asp" class="menuText">See Full Category Index >>></a></div>'

//Contents for "Power Tools, Clamps, Sandpaper & Assembly Aids"
var power=new Array()

//Key = '[0] = ADJUSTABLE CLAMP                                                           '
power[0]='<a href="/catalog/indexes/INDEX-11-00.asp" class="menuText">ADJUSTABLE CLAMP</a>'

//Key = '[1] = BESSEY CLAMPS                                                              '
power[1]='<a href="/catalog/indexes/INDEX-11-01.asp" class="menuText">BESSEY CLAMPS</a>'

//Key = '[2] = BLADES                                                                     '
power[2]='<a href="/catalog/indexes/INDEX-11-02.asp" class="menuText">BLADES</a>'

//Key = '[3] = BOSCH POWER TOOLS                                                          '
power[3]='<a href="/catalog/indexes/INDEX-11-03.asp" class="menuText">BOSCH POWER TOOLS</a>'

//Key = '[4] = CLAMPS, Full Listing                                                       '
power[4]='<a href="/catalog/indexes/INDEX-11-04.asp" class="menuText">CLAMPS, Full Listing</a>'

//Key = '[5] = DEWALT POWER TOOLS                                                         '
power[5]='<a href="/catalog/indexes/INDEX-11-05.asp" class="menuText">DEWALT POWER TOOLS</a>'

//Key = '[6] = FILES, Wood                                                                '
power[6]='<a href="/catalog/form08.asp?page=1116&pagelist=11161117&menupage=INDEX-11-06.HTM&menuheader=<Power Tools, Clamps, Sandpaper %26 Assembly Aids - FILES, Wood - FILES, Wood" class="menuText">FILES, Wood</a>'

//Key = '[7] = PORTER CABLE POWER TOOLS                                                   '
power[7]='<a href="/catalog/indexes/INDEX-11-07.asp" class="menuText">PORTER CABLE POWER TOOLS</a>'

//Key = '[8] = SANDPAPER                                                                  '
power[8]='<a href="/catalog/indexes/INDEX-11-08.asp" class="menuText">SANDPAPER</a>'

//Key = '[9] = SENCO POWER TOOLS                                                          '
power[9]='<a href="/catalog/indexes/INDEX-11-09.asp" class="menuText">SENCO POWER TOOLS</a>'

//Key = '[10] = TOOLS, Full Listing                                                        '
power[10]='<a href="/catalog/indexes/INDEX-11-10.asp" class="menuText">TOOLS, Full Listing</a>'

//Element for "Full Category Index"
power[11]='<div align="right" style="padding-right:10px;"><a href="/catalog/indexes/INDEX-11.asp" class="menuText">See Full Category Index >>></a></div>'

