var nr_napisu = 1;
var timerID = null; 

function ukryj( nr )
{
	if ( nr != 1 )
	{
		document.getElementById( "napis1" ).style.display='none';	
	}

	if ( nr != 2 )
	{
		document.getElementById( "napis2" ).style.display='none';	
	}

	if ( nr != 3 )
	{
		document.getElementById( "napis3" ).style.display='none';	
	}

	if ( nr != 4 )
	{
		document.getElementById( "napis4" ).style.display='none';	
	}

	if ( nr != 5 )
	{
		document.getElementById( "napis5" ).style.display='none';	
	}

	if ( nr != 6 )
	{
		document.getElementById( "napis6" ).style.display='none';	
	}

	
}


function ruch()
{
	if ( document.getElementById )
	{
		
		target = eval( "document.getElementById( 'napis" + nr_napisu+ "')" );
		ukryj( nr_napisu );
		target.style.display="";
		target.style.top="135px";
		nr_napisu++;
		if ( nr_napisu > 6 )
			nr_napisu=1;
	
	
		timerID = setTimeout("ruch()",3000);
	}
}











var preload_img = new Array();  /* Tablica tymczasowa dla obrazkˇw */

function preload( url1 )
/*
	Funkcja -aduje do tablicy obrazkˇw obrazek z url1.
	Powoduje to, ¬e obrazek jest w cache i jego kolejne wczytywanie 
	jest b-yskawiczne.
*/
{
	if ( document.images )
	{
		var i = preload_img.length;
		preload_img[i] = new Image();
		preload_img[i].onerror = preloadOnError;
		preload_img[i].src = url1;
	
	}
} /* end function */

function preloadOnError()
{
	/* Obrazek sie nie za-adowa- */	
	//alert('Blad');
}




function init_img()
{
	preload('img/oferta_on.gif');
	preload('img/galeria_on.gif');
	preload('img/kontakt_on.gif');
	preload('img/ofirmie_on.gif');
	preload('img/strona_glowna_on.gif');
}





function init()
{
	init_img();
	ruch();	
	return true;
}


