var pfadb = 'fileadmin/templates/images/sponsoren/co/';

var bBannerImg = new Array("renault-muehleholz.jpg","ospelt-catering.jpg","mcdonalds.jpg","marc-ruhe.jpg","risch.jpg","auhof.jpg","liechtenstein.jpg","brauhaus.jpg","003.gif");
var bBannerUrl = new Array("http://www.auto.li","http://www.ospeltag.li","http://www.mcdonalds.com","http://www.ruhe.li","http://www.risch.li","http://www.auhof.li","http://www.marke.li","http://www.brauhaus.li","http://www.rechsteiner.li/");
var bcurrentImg = 0;

function switchBanner1() {
	bcurrentImg ++;
	if( bcurrentImg > bBannerImg.length -1 ) {
		bcurrentImg = 0;
	}
	document.cosponsorenbanner.src = pfadb + bBannerImg[bcurrentImg];
	window.setTimeout('switchBanner1()', 2000);
}

function openBannerUrl1() {
	burl = bBannerUrl[bcurrentImg];
	if (burl != "") {
		window.open(burl);
	}
}

window.setTimeout('switchBanner1()', 2000);