/**
 * 
 */
$(document).ready(function(){

 $("ul.meaImageGridThumb li").hover(function() {
  
  $(this).css({'z-index' : '5000'}); /*Add a higher z-index value so this image stays on top*/ 
  
  $(this).find('img').addClass("hover").stop() /* Add class of "hover", then stop animation queue buildup*/
    .animate({
      marginTop: '-20px',
      marginLeft: '-20px',
 
      width: '155px', 
      height: '174px'
    }, 200);
  } , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop() 
		.animate({
			marginTop: '0', /* Set alignment back to default */
			marginLeft: '0',
			top: '0',
			left: '0',
			width: '125px', /* Set width back to default */
			height: '149px', /* Set height back to default */

		}, 200);
  });

});
