<!--
var bild=new Array(),
zaehler=0;

if (document.images)
{
	var path = "gfx/ref/";
	bild[0]=new Image();bild[0].src=path + "id_tsystems1_gr.jpg";
	bild[1]=new Image();bild[1].src=path + "id_tsystems2_gr.jpg";
	bild[2]=new Image();bild[2].src=path + "id_tsystems3_gr.jpg";
	bild[3]=new Image();bild[3].src=path + "id_tsystems4_gr.jpg";
}

function wechsel() {
	if(document.images) {
		zaehler++;
		if (zaehler>3) zaehler=0;
		document.images['pic'].src=bild[zaehler].src;
	}
}
//-->