$(document).ready(function() {
						   
	$(function(){
$('.zoomfoto').hover(function(){
$(this).children('img').stop().animate({width:"678px", height:"678px", marginLeft:"-150px", marginTop:"-150px"}, 400);
}, function(){ $(this).children('img').stop().animate({width:"280px",height:"258px",marginLeft:"0",marginTop:"0"}, 400); });
});
});