//keuze menu Italy
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]='<b><a href="http://www.ducati.com/it/index.jhtml/">Ducati Sito</a> | <a href="http://www.ducatibenelux.nl">Ducati Sito Nord Europa</a> | <a href="http://www.ducati.com/it/racing/home_news_popup_racing.jhtml?newsId=49995">GP DATA 2010</a> | <a href="http://www.ducati.com/it/racing/home_news_popup_racing.jhtml?newsId=49997">SBK DATA 2010</a></b>'
submenu[1]='<b><a href="../Jiffie.htm">Soluzione solcatura Jiffy con traduzione</a> | <a href="../996_2000/index996.htm">Techniek 996</a> | <a href="../LedTaillight/Led_achterlicht_Ducati 916_996_998_748.htm">Workshop Led verl.748s(update-aug2007) con traduzione<a/></b>'
submenu[2]='<a href="../2003/index_T.htm">Assen en Temse 2003</a></b>'
submenu[3]='<b><a href=http://www.ducati.com/dealerlocator/gm_chooseCountry.jsp?lng=it" >Trova Concessionari Ducati Sito</a> | <a href="http://www.ducatizaltbommel.nl">Ducati Store Zaltbommel</a> | <a href="http://www.de-ducati-deskundige.nl">Carl Nengerman 3.D></a> | <a href="http://www.startwin.com">StarTwin</a> | <a href="http://www.biggelaar-performance.com/">Biggelaar</a> | <a href="http://www.affettoducati.com">Affetto</a> | <a></a></b>'
submenu[4]='<b><a href="http://www.ducati.com/ducatiworld/clubs/clubFinder.jsp?lng=it">Trova Club</a> | <a href="http://www.ducaticlub.nl">Ducati Club Olanda</a> | <a href="http://www.ducaticlub.be">Ducati Club Belgium</a> | <a href="http://www.ducaticorsefriends.com">Websito Ducaticorsefriends</a> | <a href="http://www.docducatielba.it/">Ducati Club Islo da Elba</a></b>'
submenu[5]='<b><a href="../award.htm">Ducati In de prijzen</a> | <a href="../wall.htm">Wallpaper</a> | <a href="../screen.html">Schermbeveiligingen</a> | <a href="../Cussor/Cursor.htm">Mouse-Pointers</a> | <a href=""></a> | <a href="http://www.hotelvalleverde.net/">Hotel Restorant Valle Verde (Italy)</a> | <a href="../contact.htm">Contatto</a> | <a href="../Mobiel/mobieltje.htm">Mobieltje</a> | <a href="../TT_R.htm"><img border="0" src="images/TomTom.R.PNG"></a></b>'
submenu[6]='<b><a href="../1098.htm">1098</a> | <a href="../multistrada.htm">Multistrada ponte Modino (Pievepelago modena)</a> | <a href="../FilaDucatiReplica.html">Fila Ducati</a> | <a href="../Press_1.htm">Classic Ducatis</a> | <a href="http://www.ducati.com/docs_eng/model06/desmosedicirr/flash/index_eng.html">Desmosedici RR</a></b>'
submenu[7]='<b><a href="../Piloten/P2.htm">Bayliss</a> | <a href="../Piloten/P1.htm">Lanzi</a> | <a href="../Giancarlo.htm">Giancarlo</a> | <a href="http://www.y2kducati.com/">Team Y2K</a></b>'
submenu[8]='<b><a href=""></a></b>'
//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;
}