jQuery(document).ready(function() {
	jQuery("ul.imageSizer li").hover(function() {
		jQuery(this).css({'z-index' : '10'});
		jQuery(this).find('img').addClass("hover").stop()
			.animate({
				marginTop: '-90px', 
				marginLeft: '-90px', 
				top: '50%', 
				left: '50%', 
				width: '125px', 
				height: '125px',
				padding: '20px' 
			}, 200);

		} , function() {
		jQuery(this).css({'z-index' : '0'});
		jQuery(this).find('img').removeClass("hover").stop()
			.animate({
				marginTop: '0', 
				marginLeft: '0',
				top: '0', 
				left: '0', 
				width: '82px', 
				height: '82px', 
				padding: '5px'
			}, 400);
	});
});
