/* a! <--JS PNQS -- Vectornet -- 2008 */
//--> contato.php
//--> formulário
$(document).ready(function() { 
	var options = { 
	beforeSubmit:   validar,  
	success:        sucesso 
}; 
$("#formContato").validate();
	$('#formContato').ajaxForm(options); 
}); 	
function validar(formData, jqForm, options){
	if($("#formContato").valid())
		return true;
	else
		return false;
}	
function sucesso(resposta, status)  { 
	alert(resposta); 
}
//-->
//--> menu slide
$(document).ready(function(){
	$(".contato h5:first").addClass("active");
	//-->
	$(".contato p:first").hide();
	$(".contato p:not(:first)").hide();
	//-->
	$(".contato h5").click(function(){
		$(this).next("p").slideToggle("slow").siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h5").removeClass("active");
	});
});









