	$(document).ready(function(){
		
		// Configuração do boxfaq DropDown
		if(!$("#boxfaq dt").children().not(".titulo").is("span")){
		$("#boxfaq dt").prepend("<span>  + </span>") 	
		}
		$("#boxfaq").find("dd").hide();
		$("#boxfaq").find("dt").toggle(function(){
			
			$(this).next().slideDown("slow");	
			$(this).find("span").not(".titulo").empty();
			$(this).prepend("<span> - <span>");
				
			}, function() {
				
				$(this).next().slideUp("slow");
				$(this).find("span").not(".titulo").empty();	
				$(this).prepend("<span> + </span>");
						
		});
		// Fim da configuração do Drop Down
	});
