function clickBanner() {
	if (bannerA[curIdx][1] != "") {
		if (bannerA[curIdx][2] == "_blank") {
			newWindow = window.open(bannerA[curIdx][1],"newWindow");
			newWindow.focus();
		} else {
			window.location.href = bannerA[curIdx][1];
		}
	}
}

function changeBanner() {
	//alert(bannerA.length);
	if (curIdx == (bannerA.length-1)) { curIdx = 0; } else { curIdx += 1; }
	var bannerObj; preloadImage("bannerObj","/fileadmin/templates/images/banner/" + bannerA[curIdx][0]);
	swapImage("headerInfoboxLayer","bannerImg","bannerObj");
}