jQuery(function($) {
		$('#page-projects ul li a').hover(
			function() {
				$(this).find('span').slideDown(200, function() {
						$(this).css('display', 'block');
					});
			},
			function() {
				$(this).find('span').slideUp();
			}
		);
	});