<!-- # Pronto Casei
$(document).ready(function()
{
	$('div.blocos a').fancybox({'titlePosition'	: 'over'});
	$("ul.lista-recursos li").mouseover(function()
	{
		$(this).children('div').removeClass("hidden").addClass("show");
	})
	.mouseout(function()
	{
		$(this).children('div').removeClass("show").addClass("hidden");
	});
});
-->
