$(document).ready(function(){
	$("ul.portfolio li a").hover(
		function(event){
			$(this).find("span").slideToggle("fast");
		}, function(event){
			$(this).find("span").fadeOut("normall");
		});
});
