//Drop down menu link- © Dynamic Drive (www.dynamicdrive.com)
//http://www.dynamicdrive.com/dynamicindex1/dropmenuindex.htm
//Credit MUST stay intact for use

// menuX[0]='<DIV CLASS="dropdown-sub"><a href="/abc/">abc</a></DIV>'

//Contents for menu 1
var menu1=new Array()
menu1[0]='<DIV CLASS="dropdown-sub"><a href="/aboutus/">About Us</a></DIV>'
menu1[1]='<DIV CLASS="dropdown-sub"><a href="/network/">Network Layout</a></DIV>'
menu1[2]='<DIV CLASS="dropdown-sub"><a href="/noc/">NOC (Datacenter)</a></DIV>'
menu1[3]='<DIV CLASS="dropdown-sub"><a href="/partners/">Partners</a></DIV>'
menu1[4]='<DIV CLASS="dropdown-sub"><a href="/other/">Other Information</a></DIV>'
//Contents for menu 2
var menu2=new Array()
menu2[0]='<DIV CLASS="dropdown-sub"><a href="/domain/">Domain Names</a></DIV>'
menu2[1]='<DIV CLASS="dropdown-sub"><a href="/webhosting/">Web Hosting</a></DIV>'
menu2[2]='<DIV CLASS="dropdown-sub"><a href="/dedicated/">Dedicated Servers</a></DIV>'
menu2[3]='<DIV CLASS="dropdown-sub"><a href="/dedicated/colocation.shtml">Colocation</a></DIV>'
menu2[4]='<DIV CLASS="dropdown-sub"><a href="/dedicated/voip.shtml">VoIP</a></DIV>'
menu2[5]='<DIV CLASS="dropdown-sub"><a href="/submit/">Search Engine</a></DIV>'
//Contents for menu 3
var menu3=new Array()
menu3[0]='<DIV CLASS="dropdown-sub"><a href="/search/">Search Zentek</a></DIV>'
menu3[1]='<DIV CLASS="dropdown-sub"><a href="/controlpanel/webmail.shtml" TARGET="_blank">Webmail System</a></DIV>'
menu3[2]='<DIV CLASS="dropdown-sub"><a href="/mirrors/">Official Mirrors</a></DIV>'
//Contents for menu 4
var menu4=new Array()
menu4[0]='<DIV CLASS="dropdown-sub"><a href="/support/">Technical Support</a></DIV>'
menu4[1]='<DIV CLASS="dropdown-sub"><a href="/support/">Documentation</a></DIV>'
menu4[2]='<DIV CLASS="dropdown-sub"><a href="/controlpanel/">Control Panels</a></DIV>'
//Contents for menu 5
var menu5=new Array()
menu5[0]='<DIV CLASS="dropdown-sub"><a href="/order/payment_methods.shtml">Payment Methods</a></DIV>'
menu5[1]='<DIV CLASS="dropdown-sub"><a href="/order/">Order Now</a></DIV>'
menu5[2]='<DIV CLASS="dropdown-sub"><a href="/order/webhosting.shtml">- Web Hosting</a></DIV>'
menu5[3]='<DIV CLASS="dropdown-sub"><a href="/order/dedicated.shtml">- Dedi. Server</a></DIV>'
menu5[4]='<DIV CLASS="dropdown-sub"><a href="/order/dedicated.shtml">- Colocation</a></DIV>'
//Contents for menu 6
var menu6=new Array()
menu6[0]='<DIV CLASS="dropdown-sub"><a href="/contact/">Contact Details</a></DIV>'
menu6[1]='<DIV CLASS="dropdown-sub"><a href="/contact/email.shtml">- Email</a></DIV>'
menu6[2]='<DIV CLASS="dropdown-sub"><a href="/contact/telephone-fax.shtml">- Telephone & Fax</a></DIV>'
menu6[3]='<DIV CLASS="dropdown-sub"><a href="/contact/mail.shtml">- Mail</a></DIV>'


//reusable/////////////////////////////

//Drop down menu by http://www.dynamicdrive.com

var zindex=100
var ns4=document.layers
var ns6=document.getElementById&&!document.all
var ie4=document.all
var opr=navigator.userAgent.indexOf("Opera")

function dropit(e,whichone){
curmenuID=ns6? document.getElementById(whichone).id : eval(whichone).id
if (window.themenu&&themenu.id!=curmenuID)
themenuStyle.visibility=ns4?"hide" : "hidden"

themenu=ns6? document.getElementById(whichone): eval(whichone)
themenuStyle=(ns6||ie4)? themenu.style : themenu

themenuoffsetX=(ie4&&opr==-1)? document.body.scrollLeft : 0
themenuoffsetY=(ie4&&opr==-1)? document.body.scrollTop : 0

themenuStyle.left=ns6||ns4? e.pageX-e.layerX : themenuoffsetX+event.clientX-event.offsetX
themenuStyle.top=ns6||ns4? e.pageY-e.layerY+19 : themenuoffsetY+event.clientY-event.offsetY+18

hiddenconst=(ns6||ie4)? "hidden" : "hide"
if (themenuStyle.visibility==hiddenconst){
themenuStyle.visibility=(ns6||ie4)? "visible" : "show"
themenuStyle.zIndex=zindex++
}
else
hidemenu()
return false
}

function hidemenu(){
if ((ie4||ns6)&&window.themenu)
themenuStyle.visibility="hidden"
else if (ns4)
themenu.visibility="hide"
}

if (ie4||ns6)
document.onclick=hidemenu

//reusable/////////////////////////////