<!--
var bild=new Array(),
zaehler=0;

if (document.images)
{
	var path = "gfx/ref/";
	bild[0]=new Image();bild[0].src=path + "leo_jobsworld1_gr.jpg";
	bild[1]=new Image();bild[1].src=path + "leo_jobsworld2_gr.jpg";
	bild[2]=new Image();bild[2].src=path + "leo_breit1_gr.jpg";
	bild[3]=new Image();bild[3].src=path + "leo_breit2_gr.jpg";
	bild[4]=new Image();bild[4].src=path + "leo_thermo1_gr.jpg";
	bild[5]=new Image();bild[5].src=path + "leo_thermo2_gr.jpg";
}

function wechsel() {
	if(document.images) {
		zaehler++;
		if (zaehler>5) zaehler=0;
		document.images['pic'].src=bild[zaehler].src;
	}
}
//-->
