// JavaScript Document
$().ready(function(){
	$("#tit").hide();
	$("#texto1").hide();
	$("#texto2").hide();
	$("#texto3").hide();
	for (i = 1; i <= _global_total_portifolio; i++) { $("#a" + i).hide(); }

	document.getElementById('conteudo').style.visibility = 'visible';
	document.getElementById('conteudo').style.display = '';

	$("#tit").fadeIn('slow', function(){
		$("#texto1").fadeIn('slow', function(){
			$("#texto2").fadeIn('slow', function(){
				$("#texto3").fadeIn('slow', function(){
				 });
			 });
		 });
	});
});
function t(q) {
  if ($("#a" + q).is(":hidden")) {
	$("#a" + q).slideDown();
  } else {
	$("#a" + q).slideUp();
  }
}

