$(document).ready(function(){
 
	$("#textUltProjeto")
 
	$("#ultimosProjetos ul li a").mouseover(function(){
	
		var largePath = $(this).attr("title");
		var largeAlt = $(this).attr("rel");
		
		$("#imgUltProjeto").attr({ src: largePath, alt: largeAlt });
		
		$("#textUltProjeto").html(largeAlt); return false;
	});
	
});