<!--
function nextimage(bildname)
{
  //image_"+i+".src='images/2.gif'
  
  var temp = bildname.src.split("/");

  var datei = temp[temp.length - 1];

  switch (datei) {
  case "1.gif":
    bildname.src = 'images/2.gif';
    break;
  case "2.gif":
    bildname.src = 'images/3.gif';
    break;
  case "3.gif":
    bildname.src = 'images/4.gif';
    break;
  case "4.gif":
    bildname.src = 'images/1.gif';
    break;
  }
}

myHeight = 680;

var reihen = 20;
var objekte = reihen * 26;
//alert(myHeight);
//-->


//windowHeight = 0;
//if( typeof( window.innerWidth ) == 'number' ) {
  //Non-IE
//windowHeight = window.innerHeight;
//} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
  //IE 6+ in 'standards compliant mode'
//windowHeight = document.documentElement.clientHeight;
//} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
  //IE 4 compatible
//windowHeight = document.body.clientHeight;
//}
//windowHeight = windowHeight - 644;
//windowHeight2 = windowHeight - 127;
