$(document).ready(function(){
	$('.GornePrzyciski img').mouseover(function(){
		$(this).animate({opacity: 1}, 700);
	});
	$('.GornePrzyciski img').mouseout(function(){
		$(this).animate({opacity: 0.5}, 700);
	});
});
