window.onload = initBannerLink;

var lista_rys = new Array("www/grafika/szafa_wnekowa.jpg","www/grafika/szafa_wnekowa.jpg","www/grafika/płyty_wysokopolyskowe.jpg","www/grafika/sklejbud_radom.jpg","www/grafika/sklejbud_warszawa.jpg");
var adURL = new Array("www/oferta.html","www/oferta.html","www/plyty_wyskopolyskowe.html","www/ekspozycja_radom.html", "www/ekspozycja_warszawa.html");
var aktualny_rys = 0;

function rotate() {
	aktualny_rys++;
	if (aktualny_rys == lista_rys.length) {
		aktualny_rys = 0;
	}
	document.getElementById("baner").src = lista_rys[aktualny_rys];

	setTimeout("rotate()", 4 * 2000);
}

function newLocation() {
	document.location.href = adURL[aktualny_rys];
	return false;
}

function initBannerLink() {
	if (document.getElementById("baner").parentNode.tagName == "A") {
		document.getElementById("baner").parentNode.onclick = newLocation;
	}
	
	rotate();
}

