jQuery(function(){


    $("#proyect-list .proyect a").hover
	     (
		function()
		{
			$(this).children("span").show();
		}
		,function()
		{
			$(this).children("span").hide();
		}
	);
		

});