$(document).ready(function(){	
		
			
			$(".post_thumb_container a").hover(function(){
				$(this).find("span").stop().animate({right:"0",top:"0"}, 'fast');
				}, function(){
				$(this).find("span").stop().animate({right:"-8",top:"-8"}, 'fast');
			})
			
});
