/**@author ©WMAMBA Antonello Masini 2010 tutti i diritti riservati*/
var idsub=null;var csub=null;var tmrslide=null;var indexinfo=0;var maxinfo=0;var info=null;var infow=0;var sldpos=0
var maxw=0;function ShowSubMenu(id,obj){if(id!=idsub&&csub!=null){csub.style.display="none";}
csub=document.getElementById("submenu"+id);csub.style.left=obj.offsetLeft+"px";csub.style.display="inline-block";idsub=id;}
function HideSubMenu(id){if(id==null&&csub!=null){csub.style.display="none";csub=null;return;}
if(id!=null)document.getElementById("submenu"+id).style.display="none";}
function StartInfoSlide(){info=document.getElementById("infoContent");maxw=document.getElementById("infoslide").offsetWidth;info.style.left=maxw+"px";if(indexinfo>maxinfo)indexinfo=0;info.innerHTML=document.getElementById("info"+indexinfo).innerHTML;indexinfo++;infow=info.offsetWidth;tmrslide=setInterval("MoveInfo()",20);}
function MoveInfo(){if(info.offsetLeft<-infow){clearInterval(tmrslide);StartInfoSlide();return;}
try{info.style.left=info.offsetLeft-2+"px";}catch(err){clearInterval(tmrslide);}}
