jQuery(function(){


    $("#proyect-list .proyect a").hover
	     (
		function()
		{
			$(this).children("span").fadeIn("fast");
		}
		,function()
		{
			$(this).children("span").fadeOut("fast");
		}
	);
		

});