		$(function() {
			$('div.folio ul li').hover(function(){
				$(this).find('p').animate({top:'0px'},{queue:false,duration:100});
			}, function(){
				$(this).find('p').animate({top:'182px'},{queue:false,duration:500});
			});
		});