$(function(){
	var zoom = $("#zoomlayer");
	zoom.hide();
	$("body")
		.mouseover(function(e){			
			zoom
				.css({top:this.styleTop, left:this.styleLeft})
				.show()
				.html('<img id="zoom" src="images/zoom.gif" />');
		})
		.mouseout( function(){zoom.hide();})
});

$(function(){
	$('.propic').fancyzoom({Speed:400,showoverlay:false});
	$('img.fancyzoom').fancyzoom();
});