$(document).ready(function() {
	$('.fadeThis').append('<span class="hover"></span>').each(function () {
	  var $span = $('> span.hover', this).css('opacity', 0);
	  $(this).hover(function () {
	    $span.stop().fadeTo(500, 1);
	  }, function () {
	    $span.stop().fadeTo(300, 0);
	  });
	});
	
	
	
	$(function (){
		$(".fadeThis").animate({
			"width" : "152px",
			"height" : "127px",
			"top" : "10px"
		});
			$(".fadeThis").hover(function(){
                    $(this).stop().animate({
                    	"width": "156px",
                    	"height" : "131px",
                    	"top" : "8px"
                    });
                }, function(){
                	$(this).stop().animate({
                	"width": "152px",
                	"height" : "127px",
                	"top" : "10px"
                });
             });	
    });
});
