img.on("mouseover",zoom)
function zoom (event){
var img=$(event.target)
img.off("mouseover",zoom);
new_img=img.clone();
new_img.addClass("pict1");
$("body").append(new_img);
new_img.css("position","fixed");
new_img.css("top","100px");
new_img.css("left","300px");
new_img.css("height","30px");
new_img.css("width","30px");
new_img.css("zIndex","4");
new_img.animate({height:300,width:300},750);
img.on("mouseout",zoom_out);
};
function zoom_out (event){
var img1=$(event.target)
img.off("mouseout",zoom_out);
$(".pict1").animate({height:30,width:30},750,function(){$(".pict1").remove();});
img.on("mouseover",zoom);
}