var img = '';
//Da ein Fehler auftritt, wenn das Bild gezoommt wird 
//während die Seite noch nicht ganz geladen ist, wird 
//isready von body.onload auf true gesetzt.
	funktionen = new Array();
	isready = false;
    hs.graphicsDir = '/gfx/highslide/';
function hsOnload()
{
	hs.preloadImages(6);
	isready = true;
}    

addFunktionToOnload(hsOnload);
za = 0;
function MouseOut_Helper(who) {
	if(img == who)
	{		
		img = '';
  		hs.closeId(who);  		
  	}
}

function NullFunk(what) {
	if (img == what) { hs.expand(document.getElementById(what), {captionId: 'caption1'}); }
	else return;
}

function timeout_helper (what) {
	if(img == '' && isready)
	{		
		za++;
		var who = what;
		img=what;
		setTimeout("NullFunk('"+what+"')", 1000);
	}
}

