$(document).ready(function(){
	$("#button1").hover(
		function(){
			$(this).css({'top':'5px','left':'83px'});
		},
		function(){
			$(this).css({'top':'2px','left':'80px'});			
		}
	);
	$("#button2,#button3").hover(
		function(){
			$(this).css({'top':'5px','left':'48px'});
		},
		function(){
			$(this).css({'top':'2px','left':'45px'});			
		}
	);
	$(".cist-dale").hover(
		function(){
			$(this).css({'bottom':'-25px','right':'17px'});
		},
		function(){
			$(this).css({'bottom':'-22px','right':'20px'});			
		}
	);
});