
    var ie  =(document.all)?1:0;
    var DOM =(document.getElementById&&!document.all)?1:0;
    var ns  =(document.layers)?1:0;	

var bildnr=3;
var bilder=new Array(3);
bilder[0] = "fileadmin/bilder/0_home/airlines_logos_klein/logo_klein_sunexpress.gif";
bilder[1] = "fileadmin/bilder/0_home/airlines_logos_klein/logo_klein_croatia_airlines.gif";
bilder[2] = "fileadmin/bilder/0_home/airlines_logos_klein/logo_klein_aegean.gif";



function bildwechseln() {
	var bildnr_neu = Math.round(Math.random()*2);
	while (bildnr == bildnr_neu) {
		bildnr_neu = Math.round(Math.random()*2);
	}
	var bildnr=bildnr_neu;
	//window.document.img_footer.src=bilder[bildnr];
     if (ie) { document.all["img_footer"].src=bilder[bildnr];}
     if (DOM) { document.getElementById("img_footer").src=bilder[bildnr];       }
     if (ns) { document.layers["img_footer"].src=bilder[bildnr];  }	
	setTimeout('bildwechseln()',2500);
}
function start () {
         setTimeout('bildwechseln()',0);
}

//window.onload = start;
//page.bodyTag = <body onload="setTimeout('bildwechseln()',5000)">

