<!---script type="text/javascript"--->

var submenu=new Array()


//Set submenu contents. Expand as needed. For each content, make sure everything exists on ONE LINE. Otherwise, there will be JS errors.

submenu[1]='W.E.I. Incorporated home page, our professionals can help! '
submenu[2]='Here you will find our product line, you can search by product or by manufacture.'
submenu[3]='Here you will find our catalog section and other manufacture catalogs.'
submenu[4]='Contact W.E.I. Incorporated now and get specific information.'
submenu[5]='W.E.I. Incorporated offers a variety of services. Check out all of the services that we provide!'
submenu[6]='This section contains information about using our website and other important information.'
submenu[7]='See what is added to your cart!'
submenu[8]='Login to your member account or create a new account.'
submenu[9]='View your order history status on all recent orders.'
submenu[10]='Use the shipping calculator to calculate shipping costs.'



//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=500

/////No need to edit beyond here

var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}

function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide)
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)
}

function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}


function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}


function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}


<!---/script--->
