/* hotspot_slideshows */
var hotspot = '07';
 
function slideShow(s) {
  document.getElementById('jaarplan20'+hotspot).style.display = "none";
  document.getElementById('jaarplan20'+s).style.display = "block";
 
  document.getElementById('jaar20'+hotspot).style.backgroundPosition = "top left";
  document.getElementById('jaar20'+s).style.backgroundPosition = "bottom left";  

  hotspot = s;
}

/* partijen toggle */ 
function partijShow(s) {
  if(document.getElementById('partijen_'+s).style.display == "block") {
     document.getElementById('partijen_'+s).style.display = "none";
} else {
    document.getElementById('partijen_'+s).style.display = "block";
}
}

/* ai comfort slideshow */
function slideShow2(s,a) {
  if (a == "staand") {
    document.getElementById("slidegroot").width = 309;
    document.getElementById("slidegroot").height = 464;
  }
  if (a == "liggend") {
    document.getElementById("slidegroot").width = 464;
    document.getElementById("slidegroot").height = 309;
  }
  document.getElementById("slidegroot").src = "/content/common/gfx/ai_comfort/impressie_"+s+".jpg";
}
