$(document).ready(function() {
	$('img.zoom_mini').each(function(){
		var fullimg=$(this).parent().children('#' + $(this).attr('id') + '_zoom:first');
		$(this).bind('mouseenter', function(){
			fullimg.fadeIn('normal');			
		});
		fullimg.css('top',parseInt(24-fullimg.height()/2));
		fullimg.css('left',parseInt(24-fullimg.width()/2));
		fullimg.bind('mouseleave',function(){
			$(this).fadeOut('normal');
		});
	});
});
