// JavaScript Document

/*
Tabs Menu (mouseover)- By Dynamic Drive
For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
This credit MUST stay intact for use
*/

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[0]='<span class="ilayer"><b>&nbsp;</b></span>'

submenu[1]='<div style="position: relative; text-align: middle; top: 6px; left:-8px;"><span class="ilayer"><b><a href="../news.html">News</a> | <a href="../events.html">Events</a> | <a href="../associations.html">Associations</a> | <a href="../company.html">About Us</a></span> | <a href="../contact.html">Contact Us</a></b></span></div>'

submenu[2]='<span class="ilayer"><b>&nbsp;</b></span>'

submenu[3]='<div style="position: relative; text-align: middle; top: 6px; left: 80px; width: 100%;"><span class="ilayer"><b><a href="../reelseats.html">Reel Seats</a> | <a href="../guides.html">Guides & Tops</a> | <a href="../saltwater.html">Saltwater</a> | <a href="../grips.html">Grips</a> | <a href="../blanks.html">Rod Blanks</a> | <a href="../supplies.html">Supplies</a> | <a href="../thread.html">Thread</a> | <a href="../equipment.html">Equipment</a> | <a href="../misc.html">Misc</a></b></span></div>' 

submenu[4]='<div style="position: relative; text-align: middle; top: 6px; left: 340px;"><span class="ilayer"><b><a href="../manuals.html">Product Manuals</a> | <a href="../information.html#ads">Product Ads</a> | <a href="../information.html#faq">FAQ</a></b></span></div>'

submenu[5]='<div style="position: relative; text-align: middle; top: 6px; left: 412px;"><span class="ilayer"><b><a href="../catalog.html">Download Catalog</a> | <a href="https://forms.netsuite.com/app/site/crm/externalleadpage.nl?compid=551872&formid=1&h=dfca0c242d422d292aed" target="_blank">Request A Catalog</a> | <a href="../catalog.html#pricelist">Price List</a></b></span></div>'

submenu[6]='<div style="position: relative; text-align: middle; top: 6px; left: 544px;"><span class="ilayer"><b><a href="../dealers.html">Find A Dealer</a> | <a href="../wsale/index.htm">Dealer Login</a></b></span></div>'

submenu[7]='<span class="ilayer"><b>&nbsp;</b></span>'


//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=2000

/////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;
}
