
   /* 
    jQuery.preloadImages = function()
    {
    	for(var i = 0; i<arguments.length; i++)
        {
    		jQuery("<img>").attr("src", arguments[i]);
  		}
	}   

	$.preloadImages("images/baner.jpg");
    */
    $(document).ready(function(){
 
 
    	$('#baner_container').fadeIn(1000);
    	
    	$('#home').mouseover(function(){ $('#home').fadeOut(200); $('#home_b').fadeIn(300); });                         
    	$('#home_b').mouseout(function(){ $('#home_b').fadeOut(200); $('#home').fadeIn(300); }); 
    	
    	$('#o_klubie').mouseover(function(){ $('#o_klubie').fadeOut(200); $('#o_klubie_b').fadeIn(300); });                         
    	$('#o_klubie_b').mouseout(function(){ $('#o_klubie_b').fadeOut(200); $('#o_klubie').fadeIn(300); }); 
    	
    	$('#lokalizacja').mouseover(function(){ $('#lokalizacja').fadeOut(200); $('#lokalizacja_b').fadeIn(300); });                         
    	$('#lokalizacja_b').mouseout(function(){ $('#lokalizacja_b').fadeOut(200); $('#lokalizacja').fadeIn(300); }); 
    	
    	$('#imprezy').mouseover(function(){ $('#imprezy').fadeOut(200); $('#imprezy_b').fadeIn(300); });                         
    	$('#imprezy_b').mouseout(function(){ $('#imprezy_b').fadeOut(200); $('#imprezy').fadeIn(300); }); 
    	
    	$('#galeria').mouseover(function(){ $('#galeria').fadeOut(200); $('#galeria_b').fadeIn(300); });                         
    	$('#galeria_b').mouseout(function(){ $('#galeria_b').fadeOut(200); $('#galeria').fadeIn(300); }); 
    	
    	$('#oferta').mouseover(function(){ $('#oferta').fadeOut(200); $('#oferta_b').fadeIn(300); });                         
    	$('#oferta_b').mouseout(function(){ $('#oferta_b').fadeOut(200); $('#oferta').fadeIn(300); }); 
		
    	$('#rezerwacja').mouseover(function(){ $('#rezerwacja').fadeOut(200); $('#rezerwacja_b').fadeIn(300); });                         
    	$('#rezerwacja_b').mouseout(function(){ $('#rezerwacja_b').fadeOut(200); $('#rezerwacja').fadeIn(300); }); 
    	
    	$('#dj_residents').mouseover(function(){ $('#dj_residents').fadeOut(200); $('#dj_residents_b').fadeIn(300); });                         
    	$('#dj_residents_b').mouseout(function(){ $('#dj_residents_b').fadeOut(200); $('#dj_residents').fadeIn(300); }); 

 
     
    });
