// menu a tendina per ElettroRAPIDO

//Contents for menu 1
var menu1=new Array()
var menu2=new Array()
var menu3=new Array()
var menu4=new Array()
var menu5=new Array()
var menu6=new Array()
//Contents for menu 2, and so on

//azienda
menu1[0]='<div align="left"><a href="company_chisiamo.asp">Chi siamo</a></div>'
menu1[1]='<div align="left"><a href="company_dovesiamo.asp">Dove siamo</a></div>'
menu1[2]='<div align="left"><a href="company_contatti.asp">Contatti</a></div>'
menu1[3]='<div align="left"><a href="company_prodotti.asp">I nostri prodotti</a></div>'

//Download
menu2[0]='<div align="left"><a href="download_cdrom.asp">CDROM</a></div>'
menu2[1]='<div align="left" style="background-color:#146576;"><hr width=100%></div>'
menu2[2]='<div align="left"><a href="download_metel.asp">Listini - elettrici</a></div>'
//menu2[3]='<a href="http://www.antek.it/ElettroRAPIDO/metel5-id.php">Listini - termosanitari</a>'
menu2[4]='<div align="left"><a href="download_archivi.asp">Archivi apparecchi</a></div>'
menu2[5]='<div align="left"><a href="download_carpenterie.asp">Carpenterie</a></div>'
menu2[6]='<div align="left" style="background-color:#146576;"><hr width=100%></div>'
menu2[7]='<div align="left"><a href="download_update.asp">Aggiornamenti</a></div>'
menu2[11]='<div align="left" style="background-color:#146576;"><hr width=100%></div>'
menu2[13]='<div align="left"><a href="download_jpcadreader.asp">JPCAD Reader</a></div>'

//Prodotti
menu3[0]='<div align="left"><a href="elettrorapido.asp">ElettroRAPIDO</a></div>'
menu3[1]='<div align="left"><a href="products.asp?id=3">> Shock</a></div>'
menu3[2]='<div align="left"><a href="products.asp?id=2">> Schemi</a></div>'
menu3[3]='<div align="left"><a href="products.asp?id=1">> Impianti</a></div>'
menu3[4]='<div align="left"><a href="products.asp?id=4">> Papiro</a></div>'
menu3[5]='<div align="left"><a href="products.asp?id=5">> Scriba</a></div>'
menu3[10]='<div align="left" style="background-color:#146576;"><hr width=100%></div>'
menu3[11]='<div align="left"><a href="product_presentazioni.asp">Presentazioni</a></div>'
menu3[12]='<div align="left"><a target="_blank" href="http://lnx.elettrorapido.com/download/listino-prezzi.pdf">Listino prezzi</a></div>'
menu3[13]='<div align="left"><a href="rivenditori.asp">Punti vendita</a></div>'
//menu3[13]='<div align="left"><a href="http://lnx.elettrorapido.com/region.php">Punti vendita</a></div>'

//Supporto
menu4[0]='<div align="left"><a href="service_assistenza.asp">Assistenza</a></div>'
menu4[1]='<div align="left" style="background-color:#146576;"><hr width=100%></div>'
menu4[3]='<div align="left"><a href="service_corsi.asp">Corsi</a></div>'
menu4[4]='<div align="left"><a href="service_calendariocorsi.asp">Calendario corsi</a></div>'
menu4[6]='<div align="left" style="background-color:#146576;"><hr width=100%></div>'
menu4[7]='<div align="left"><a href="service_metel.asp">Aggiornamento listini</a></div>'
menu4[8]='<div align="left"><a href="service_mercurio.asp">Mercurio</a></div>'


menu5[1]='<div align="left"><a href="listinoER.asp">Listino prezzi</a></div>'



var menuwidth='30px' //default menu width
var menubgcolor='lightyellow'  //menu bgcolor
var disappeardelay=400  //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>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}

function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top=-500
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
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()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

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"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu
