var subactive=0;
var navtimer;

function mainnavover(id)
{ document.getElementById("mn"+id).style.backgroundColor="#0F5186";
window.clearTimeout(navtimer);
 if(subactive!=id && subactive>0)
 {     document.getElementById("subnav-box"+subactive).style.display="none";
 }
 if(document.getElementById("subnav-box"+id)!=null)
 {   document.getElementById("subnav-box"+id).style.display="block";
 if(id!=subactive)subactive=id;
 }
}


function mainnavout(id)
{ if(id!=navactive)document.getElementById("mn"+id).style.backgroundColor="#980311";
}


function subnavover(id)
{ 
window.clearTimeout(navtimer);
document.getElementById("mn"+id).style.backgroundColor="#1268AE";
document.getElementById("snt"+id).style.color="#FFFFFF";
document.getElementById("snl"+id).style.color="#FFFFFF";
}


function subnavout(id,idr)
{ 
if(id!=subnavactive)
{
document.getElementById("mn"+id).style.backgroundColor="#FFFFFF";
document.getElementById("snt"+id).style.color="#3D3D3D";
document.getElementById("snl"+id).style.color="#3D3D3D";
}
navtimer = window.setTimeout('wegsubnav('+idr+')',350);
}

function wegsubnav(id)
{
window.clearTimeout(navtimer);
if(document.getElementById("subnav-box"+id)!=null)
  document.getElementById("subnav-box"+id).style.display="none";
}

function buttonover(id)
{
document.getElementById("bn"+id).style.color="#ffffff";
document.getElementById("bn"+id).style.background='url(/cms/site/img/buchen-button-blue.png)';
}


function buttonout(id)
{
document.getElementById("bn"+id).style.color="#FFFFFF";
document.getElementById("bn"+id).style.background='url(/cms/site/img/buchen-button.png)';
}


function geturl(url)
{
document.location.href=url;
}

function openVideo(URL)
{
      var widthpos=(screen.width/2)-512;
      var heightpos=(screen.height/2)-400;
window.open(URL,"video","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=520,height=420,left="+widthpos+",top="+heightpos);
}
