$(function(){
	
	
	$('.o-firmie').hover(function(){
		$(this).find('img').fadeOut();
	}, function(){
		$(this).find('img').fadeIn();
	});
	
	$('.produkty').hover(function(){
		$(this).find('img').fadeOut();
	}, function(){
		$(this).find('img').fadeIn();
	});
	
	$('.oferta').hover(function(){
		$(this).find('img').fadeOut();
	}, function(){
		$(this).find('img').fadeIn();
	});
	

});



	function showImage(src)
      {
      $("#gallery-image img").fadeOut("slow").remove();
      
      var largeImage = new Image();
      $(largeImage).attr("src", function(){
			$(largeImage).attr("src", src);
                      $(largeImage).hide();
		      
                      $("#gallery-image").removeClass("loading")
                                  .append(largeImage);
				  
                      $(largeImage).fadeIn("slow");                      
                      });                                                                       
      }

$(document).ready(function(){
	
	
      
		$('a').bind('focus',function(){
			this.blur();
		});
		$("#content-gallery li").fadeTo("fast", 0.33);
		
		$("#content-gallery li").hover(
			 function () {
				$(this).fadeTo("fast", 1);
			      }, 
			      function () {
				$(this).fadeTo("fast", 0.33);
			      }
		);
                
                
                
                
    
    
    $('.kLink').click(function() {
        var buf = $(this);
        var newImg = "/images/gallery/" + buf.attr('id') + ".jpg";
        $("#gallery-image").addClass("loading");
        
	showImage(newImg);
	return false;  
        
    });
                
});


	
