var pfada = 'fileadmin/templates/images/sponsoren/sponsoren/';

var aBannerImg = new Array("001.gif","002.gif","004.gif","005.gif","006.gif");
var aBannerUrl = new Array("http://www.kyberna.com","http://www.lkw.li","http://www.bvd.li","http://www.argus.li","http://www.holidaycheck.ch");
var acurrentImg = 0;

function switchBanner() {
	acurrentImg ++;
	if( acurrentImg >= aBannerImg.length ) {
		acurrentImg = 0;
	}
	document.sponsorenbanner.src = pfada + aBannerImg[acurrentImg];
	window.setTimeout('switchBanner()', 2000);
}

function openBannerUrl() {
	aurl = aBannerUrl[bcurrentImg];
	if (aurl != "") {
		window.open(aurl);
	}
}

window.setTimeout('switchBanner()', 2000);