

/*
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]='<font size="2" face="Verdana"><b><a href="xtreme.htm">X-Treme Scooters: </a> <a href="xtremeatv.htm"> ATV </a><a href="xtremebicycle.htm">- BIKES/MOPEDS </a><a href="xtremeelectric.htm">- ELECTRIC </a><a href="xtremegas.htm">- GAS </a><a href="xtremepocket.htm">- POCKET </a><a href="xtremetoys.htm">- TOY RIDE ON </a><a href="xtremesea.htm">- WATER </a></b></font>'

submenu[1]='<font size="2" face="Verdana"><b><a href="index.htm">Parts Quick Index</a> | <a href="batteries.htm">Batteries</a> | <a href="belts.htm">Belts</a> | <a href="electrical.htm">Electrical</a> | <a href="misc.htm">Miscellaneous</a> | <a href="motors.htm">Motors</a> | <a href="tires.htm">Tires & Wheels</a>  | <a href="onsale.htm">On Sale</a> </b></font>'

submenu[2]='<font size="2" face="Verdana"><b><a href="partsalternative.htm">Universal Parts and a Parts Alternative for Scooters</a> | <a href="scootermods.htm">Build A Performance Scooter</a>  </b></font>'

submenu[3]='<font size="2" face="Verdana"><b><a href="maintenance.htm">Maintenance Tips</a>  | <a href="maintenance.htm#troubleshooting">Troubleshooting Tips</a>  | <a href="performance.htm">Performance Tips</a> </b></font>'

submenu[4]='<font size="2" face="Verdana"><b><a href="scooternews.htm">The Latest Scooter and Parts News!  -  Find Out What is Available and What is Coming!</a></b></font>'

submenu[5]='<font size="2" face="Verdana"><b><a href="scooterfaq.htm">Questions and Answers about Placing and Receiving Orders for Parts and Scooters!  </a></b></font>'

submenu[6]='<font size="2" face="Verdana"><b><a href="scooterorder.htm">Pay by Credit Card or Paypal </a> | <a href="scooterorder.htm#moneyorder">Send A Money Order</a> | <a href="scooterorder.htm">Send An Order to Another Address</a></b></font>'

submenu[7]='<font size="2" face="Verdana"><b><a href="escooterpolicy.htm#policy">Terms of Sale</a> | <a href="escooterpolicy.htm#scooterwarranty">Scooter Warranty</a> | <a href="escooterpolicy.htm#partswarranty">Scooter Parts Warranty</a> | <a href="escooterpolicy.htm#contact">Contact Information</a></b></font>'

submenu[8]='<font size="2" face="Verdana"><b><a href="radacc.htm">Index to all Scooters and Scooter Parts on the Site!</a> | <a href="http://www.scootersupport.com/availability.htm">Availability of Inventory</a></b></font>'

submenu[9]='<font size="2" face="Verdana"><b><a href="mailto:%73%61%6C%65%73%40%73%63%6F%6F%74%65%72%73%75%70%70%6F%72%74%2E%63%6F%6D">Email Us</a> | <a href="escooterpolicy.htm#contact">Business Information</a> | <a href="index.htm">Search</a> | <a href="testimony.htm">Customer Feedback</a> | <a href="http://www.network54.com/Hide/Forum/258612">Customer Support Forum</a></b></font>'


//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;
}


