$(document).ready(function() {
	$('.jazda').mouseover(function () {
	jQuery(this).find("img").stop();
	jQuery(this).find("img").animate({top:-20, left:-20, width:353, height:280},300);
	
	});
	
	$('.jazda').mouseout(function () {
	jQuery(this).find("img").stop();
	jQuery(this).find("img").animate({top:0, left:0, width:321, height:255},300);

	});
	
	$('.item01 > a').jFav();
});

