var loadGlass = 1;
 
$('a.zoom img').hover(function(){
 
	if(loadGlass == 1) {
 
		$('body').prepend('<img id="magnify" style="position: absolute;" src="http://www.nouveller.com/wordpress/wp-content/themes/maroon-moon/images/icons/magnify.png" alt="" width="32" height="32" />');
 
	}
 
	var p = $(this);
 
	var position = p.position();
 
	$('img#magnify').css({'top' : position.top+20, 'left' : position.left+20});
 
	$('img#magnify').show();
 
},function(){
 
	$('img#magnify').hide();
 
	loadGlass = 2;
 
});
