$(document).ready(function(){	
		
			
			$(".photo_item a").hover(function(){
				$(this).find("span").stop().animate({right:"5",bottom:"5"}, 'medium');
				}, function(){
				$(this).find("span").stop().animate({right:"5",bottom:"-50"}, 'medium');
			})
			
});
