/* a! <--JS ABES -- Vectornet -- 2008 */
//-->chamadas de funções JQuery
//--> menu slide
$(document).ready(function(){
	$(".curriculos h5:first").addClass("active");
	
	$(".curriculos p:first").hide();
	$(".curriculos p:not(:first)").hide();
	
	$(".curriculos h5").click(function(){
		$(this).next("p").slideToggle("slow").siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h5").removeClass("active");
	});
});

      $(document).ready(function(){
		  $("#carregando").hide();
		  $(".link").click(function() {
			  $("#carregando").ajaxStart(function(){
			  $(this).show();
			  $("#texto").hide();
		  });
		  $("#carregando").ajaxStop(function(){
			  $(this).hide();
			  $("#texto").show();
		  });
		  $.get(this.href,
		  function(data) {
			  $("#texto").empty().html(data);
			  });
			  return false;
		  });
      });








