/*
 * INFOBOX
 * Copyright (c) 2009 WebCrew.pl
 *
 */
infobox = new Array(5);
var infobox_element = -1;
var infobox_aelement = 0;
var timer;
var sec;

function nowa_wiadomosc(tytul,tresc,link,obrazek)
{
	infobox_element++;
	infobox[infobox_element] = new Array(4);
	infobox[infobox_element][0] = tytul;
	infobox[infobox_element][1] = tresc;
	infobox[infobox_element][2] = link;
	infobox[infobox_element][3] = obrazek;
}

function wyswietl_wiadomosc(element)
{
	sec = 0;
	infobox_aelement = element;
	document.getElementById('rotator-background').style.background = "url('" + infobox[element][3] + "') no-repeat";
	document.getElementById('rotator-description').innerHTML = '<a href="' + infobox[element][2] + '">' + infobox[element][0] + '</a><br />' + infobox[element][1];
	$("#rotator-info a").each(function(i,e) { $(this).removeClass("active"); });
	$("#rotator-info a:eq(" + element + ")").addClass("active");
}

function zlicz_czas() {
	sec++;
	if (sec == 8)
	{
		infobox_aelement++;
		if (!infobox[infobox_aelement])
			infobox_aelement = 0;
		wyswietl_wiadomosc(infobox_aelement);
		sec = 0;
	}
	
	timer = setTimeout("zlicz_czas()",1000);
}

function wlacz_timer() {
	sec = 0;
	timer = setTimeout("zlicz_czas()",1000);
}
function wylacz_timer() { clearTimeout(timer); }
