
function ustaw()
{	
	//var szerokosc = $(window).width();
	var szerokosc = $(document).width();
    var ile = Math.round((szerokosc-765)/2);
    
    $("#okno-popup").css("left",ile+'px');	
     
    		
	if(szerokosc>840)
	{
		var wartosc = Math.round((szerokosc-838)/2); 
		document.getElementById("lewy-bok").style.width = wartosc+'px';	
		document.getElementById("prawy-bok").style.width = wartosc+'px';				
		
	} else
	{
		document.getElementById("lewy-bok").style.width = '0px';	
		document.getElementById("prawy-bok").style.width = '0px';
	}
		
}

function efekt()
{
	//$('#restaruacja').fadeOut(0);
	$('#restaruacja').css('backround-color','white;');
	$('#restaruacja').fadeOut('slow');
}

$(document).ready(function() {
       
		  
	$.preloadCssImages();
	
	//$("#linki div").mouseover(function(){$(this).css('background-color','white');$(this).fadeOut(500);});
	//$("#linki div").mouseout(function(){$(this).css('background-color','none');$(this).fadeIn(0);});
						
});

