$(function(){
	$('.zoom').hover(function(){
			$(this).stop().animate({width:"137px",height:"26px",left:"-3px",top:"-1px"}, 100);
			$(this).attr("src","/images/01-form.jpg");
		},
		function(){
			$(this).stop().animate({width:"131px",height:"24px",left:"0",top:"0"}, 100);
			$(this).attr("src","/images/01-form.jpg");
		});
	$('.zoom2').hover(function(){
			$(this).stop().animate({width:"137px",height:"26px",left:"3px",top:"-1px"}, 100);
			$(this).attr("src","/images/001-rab.jpg");
		},
		function(){
			$(this).stop().animate({width:"131px",height:"24px",left:"0",top:"0"}, 100);
			$(this).attr("src","/images/001-rab.jpg");
		});
	$('.zoom3').hover(function(){
			$(this).stop().animate({width:"137px",height:"26px",left:"3px",top:"-1px"}, 100);
			$(this).attr("src","/images/001-vik.gif");
		},
		function(){
			$(this).stop().animate({width:"131px",height:"24px",left:"0",top:"0"}, 100);
			$(this).attr("src","/images/001-vik.gif");
		});
	$('.zoom4').hover(function(){
			$(this).stop().animate({width:"137px",height:"26px",left:"-3px",top:"-1px"}, 100);
			$(this).attr("src","/images/02-ebby.jpg");
		},
		function(){
			$(this).stop().animate({width:"131px",height:"24px",left:"0",top:"0"}, 100);
			$(this).attr("src","/images/02-ebby.jpg");
		});
});