/*© 2009 William Schurman, Schurman Design. All Rights Reserved.*/

jQuery(function( $ ){
	
	$("a.post.category-portfolio").children("span").hide();
	
	$("a.post.category-portfolio").hover(
	      function(){
		$(this).children("span").slideDown(400, 'easeOutQuint');
		
		}, 
	      function(){
			$(this).children("span").slideUp(400, 'easeOutQuint');
		}
	);
	
});

