// JavaScript Document
$(document).ready( function(){
	$("dl dt a").toggle(
		function(){ //var o = "'#"+this.title+"'"; 
		var o = this.title;
		document.getElementById(o).style.display = "block";  
		},
		function(){ //var o = "'#"+this.title+"'"; 
		var o = this.title;
		document.getElementById(o).style.display = "none"; 
		}
	);
	
	$("#postNewsletter").click( function(){
		$.post("ajax.cfm?acao=newsletter",{
			   nome: $("#newsnome").val(),
			   email: $("#newsemail").val() 
			   },function(x){
				   var mensagem = x.split(",")[1]
				   alert(mensagem);
		});		
	});
	
	$("#loading").ajaxStart(function(){	$(this).show(); });
	$("#loading").ajaxStop(function(){	$(this).hide();	});
	$.ajaxTimeout(10000);
});