// JavaScript Document
$(document).ready(function(){
	
	  //form login topo
	  $('#resultado').hide();
	  
		    // Colocamos os valores de cada campo em uma váriavel para facilitar a manipulação
		    
		    
	  

});

function montarEnquete(){
}
function mostrarResultado(){
	
	$('#resultado').slideToggle();
	$('#votar').slideToggle();	
}
$.fn.clearForm = function() { 
	  return this.each(function() { 
	    var type = this.type, tag = this.tagName.toLowerCase(); 
	    if (tag == 'form') 
	      return $(':input',this).clearForm(); 
	    if (type == 'text' || type == 'password' || tag == 'textarea') 
	      this.value = ''; 
	    else if (type == 'checkbox' || type == 'radio') 
	      this.checked = false; 
	    else if (tag == 'select') 
	      this.selectedIndex = -1; 
	  }); 
	};
function votar(){
	var voto = $('input[name=enquete]:radio:checked').val(); 
	$.ajax({
	       type: "POST",
		   url:"modulos/enquete/votar.php", 
		   data: "enquete="+voto,
		   success:function(txt){
			   if(txt){	
				   $('#resultado').html(txt)
				   $('#form_enquete').clearForm();
				   $('#votar').slideToggle();
				   $('#resultado').slideToggle();
				   
			   }else{
				   $('#form_enquete').clearForm();
				   alert("Voto nao computado!");}
		   }
				   
	});
	
}

