$(document).ready(function () {
	$(".imagegrow").click(function (e) {
		if($("#IMG_RESIZE").data('displaying')!='true') {
			var newsrc = $(this).attr('esrc');
			
			var img = new Image();
			img.src = newsrc;
			
			var x = $(this).offset().left;
			var y = $(this).offset().top-$(document).scrollTop();

			if(x+img.width>$(window).width())
				x = $(window).width()-img.width-10;
			if(y+img.height>$(window).height())
				y = $(window).height()-img.height-10;
			if(y<0) y=10;
			$("#IMG_RESIZE").attr('src',newsrc).css({left:x,top:y,display:'block'}).data('displaying','true');
		}
	}).each(function() {
		var newsrc = $(this).attr('esrc');
		var img = new Image();
		img.src = newsrc;
	});
	$("#IMG_RESIZE").mouseout(function (e) {
		$("#IMG_RESIZE").hide().data('displaying','false');
	}).click(function () {
		$("#IMG_RESIZE").mouseout();
	});
	$(document).scroll(function () {
		$("#IMG_RESIZE").mouseout();
	});
});
