// JavaScript Document
pics = new Array("bilder/Logo_Intertours.png","bilder/sponsor_pelikan.png");
changeTime = 3;
function wechsel(){
	setTimeout("wechsel()",changeTime*1000);
	document.bild.src=pics[Math.floor(Math.random()*pics.length)];
}