// lightbox start
$(function() {
	$('a.lightbox').lightBox();
});



$(document).ready(function() {
     $('.przesun_dol').hover(function() {
          $(this).animate({ top:"3px",
				opacity: 0.6
			}, 170); 
     }, function() {
          $(this).animate({ top:"-=3px",
				opacity: 1						  	
			 }, 170);
      });
});


$(function() {
     $('.op').hover(function() {
          $(this).animate({ opacity: 0.5
				
			}, 150); 
     }, function() {
          $(this).animate({ opacity: 1
										  	
			 }, 150);
      });
});

$(function() {
     $('img.image').hover(function() {
          $(this).animate({ opacity: 0.6
				
			}, 150); 
     }, function() {
          $(this).animate({ opacity: 1
										  	
			 }, 150);
      });
});


