/* hotspot_slideshows */
var hotspot = '10';
 
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";
}
/* ai toren slideshow */
function slideShow3(s,a,d) {
  if (a == "staand") {
    document.getElementById("slidegroot").width = 224;
   document.getElementById("slidegroot").height = 350;
  }
  if (a == "liggend") {
    document.getElementById("slidegroot").width = 548;
    document.getElementById("slidegroot").height = 350;
  }
  document.getElementById("slidegroot").src = "/content/common/gfx/ai_toren/"+s+".gif";
  document.getElementById("imgDescription").innerHTML = d;
}

/* ai toren slideshow */
function slideShow5(s,a,d) {
  if (a == "liggend") {
    document.getElementById("slidegroot").width = 548;
    document.getElementById("slidegroot").height = 350;
  }
  document.getElementById("slidegroot").src = "/content/common/gfx/ai_graszilver/"+s+".gif";
  document.getElementById("imgDescription").innerHTML = d;
}

/* ai vijverslideshow */
function slideShow4(s,a,d) {
  if (a == "staand") {
    document.getElementById("slidegroot").width = 309;
    document.getElementById("slidegroot").height = 464;
  }
  if (a == "liggend") {
    document.getElementById("slidegroot").width = 548;
    //document.getElementById("slidegroot").height = 309;
  }
  document.getElementById("slidegroot").src = "/content/common/gfx/ai_vijver/"+s+".jpg";
  document.getElementById("imgDescription").innerHTML = d;
}
/* Deze functies worden gebruikt omdat je geen target=blank meer mag gebruiken */
try {
  document.addEventListener('click', handleClick, false);
  } catch(e) {
  if (document.attachEvent) {
	  document.attachEvent('onclick', handleClick);
  } else {
	  document.onclick = handleClick;
  }
}

