$(document).ready(function() {


$(".akciya").hover(function(){
							$(this).stop().animate({height:"200"},500);
							}, function(){
								$(this).stop().animate({height:"90"},1000);
								});
	
});
