
/*
Bilder vorladen per javascript
*/

var preloadFlag = false;
function preloadImages() {
if (document.images) {
  bild01 = new Image("/static/start/grafik_1.jpg");
  bild02 = new Image("/static/start/grafik_2.jpg");
  bild03 = new Image("/static/start/grafik_3.jpg");
  bild04 = new Image("/static/start/grafik_4.jpg");
  bild05 = new Image("/static/start/grafik_5.jpg");
  bild06 = new Image("/static/start/grafik_6.jpg");
  bild07 = new Image("/static/start/grafik_7.jpg");
  bild08 = new Image("/static/start/grafik_8.jpg");
  bild09 = new Image("/static/start/grafik_9.jpg");
  bild010 = new Image("/static/start/grafik_10.jpg");
  bild011 = new Image("/static/start/grafik_11.jpg");
  bild012 = new Image("/static/start/grafik_12.jpg");
  bild013 = new Image("/static/start/grafik_13.jpg");
  bild014 = new Image("/static/start/grafik_14.jpg");
  bild015 = new Image("/static/start/grafik_15.jpg");
  bild016 = new Image("/static/start/grafik_16.jpg");
  bild017 = new Image("/static/start/grafik_17.jpg");
  preloadFlag = true;
  }
}

/*
Bildwechsel Onmouseover
*/
image01 = new Image();
image01.src = "/static/start/grafik_1.jpg";
image02 = new Image();
image02.src = "/static/start/grafik_2.jpg";
image03 = new Image();
image03.src = "/static/start/grafik_3.jpg";
image04 = new Image();
image04.src = "/static/start/grafik_4.jpg";
image05 = new Image();
image05.src = "/static/start/grafik_5.jpg";
image06 = new Image();
image06.src = "/static/start/grafik_6.jpg";
image07 = new Image();
image07.src = "/static/start/grafik_7.jpg";
image08 = new Image();
image08.src = "/static/start/grafik_8.jpg";
image09 = new Image();
image09.src = "/static/start/grafik_9.jpg";
image10 = new Image();
image10.src = "/static/start/grafik_10.jpg";
image11 = new Image();
image11.src = "/static/start/grafik_11.jpg";
image12 = new Image();
image12.src = "/static/start/grafik_12.jpg";
image13 = new Image();
image13.src = "/static/start/grafik_13.jpg";
image14 = new Image();
image14.src = "/static/start/grafik_14.jpg";
image15 = new Image();
image15.src = "/static/start/grafik_15.jpg";
image16 = new Image();
image16.src = "/static/start/grafik_16.jpg";
image17 = new Image();
image17.src = "/static/start/grafik_17.jpg";
/*
Wartezeit bei Onmouseout
*/
function warten(prmSec)
  {
  prmSec *= 1000;
  var eDate = null;
  var eMsec = 0;
  var sDate = new Date();
  var sMsec = sDate.getTime();

  do {
      eDate = new Date();
      eMsec = eDate.getTime();

  } while ((eMsec-sMsec)<prmSec);
}

window.defaultStatus=""

function winopen2 (name,weite,hoehe) {
	window.open(name,"aktion","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+weite+",height="+hoehe);
}

function startbild(b) {
	document.getElementById('startbild1').style.display='none';
	document.getElementById('startbild2').style.display='none';
	document.getElementById('startbild3').style.display='none';
	document.getElementById('startbild4').style.display='none';
	document.getElementById('startbild5').style.display='none';
	document.getElementById('startbild6').style.display='none';
	document.getElementById('startbild7').style.display='none';
	document.getElementById('startbild8').style.display='none';
	document.getElementById('startbild9').style.display='none';
	document.getElementById('startbild10').style.display='none';
	document.getElementById('startbild11').style.display='none';
	document.getElementById('startbild12').style.display='none';
	document.getElementById('startbild13').style.display='none';
	document.getElementById('startbild14').style.display='none';
	document.getElementById('startbild15').style.display='none';
	document.getElementById('startbild16').style.display='none';
	document.getElementById('startbild17').style.display='none';
	document.getElementById('startbild'+b).style.display='block';
}



