$('#dialog').hide();
$('#dialogok').hide();
$('#dialogerro').hide();
$('#loading').hide();

$('.votar').click(function() {
						   
		var nome  = $('#nome').val();
		var email = $('#email').val();
		var local = $('#local').val();
		
		 
		 
		 						$("#loading").dialog({
										autoOpen: false,
										bgiframe: true,
										modal: true,
										buttons: {
											Ok: function() {
												$(this).dialog('close');
												$(this).dialog('destroy');
											}
										}
									});
		 $("#loading").dialog('open');
		
	
			
			
			var status	  = $(this).attr('id');

			var pesquisa  = $('#pesquisaid').val();
			
				$.post("../phpexe/_gravarvotoenquete.php", { 
				
				status: 		status,
				pesquisa:		22,
				nome:		nome,
				email:		email,
				local:		local
				
					   },
	
					function(data){ 
						
					  if(data == 0){
						  
						 						$('#loading').dialog('close');
												$('#loading').dialog('destroy');
					  			
								$("#dialogerro").dialog({
										autoOpen: false,
										bgiframe: true,
										modal: true,
										buttons: {
											Ok: function() {
												$(this).dialog('close');
												$(this).dialog('destroy');
											}
										}
									});

					  $("#dialogerro").dialog('open');
					  
						}
						
						if(data == 1) 
						{
							
							$('#loading').dialog('close');
							$('#loading').dialog('destroy');
							
							$("#dialogok").dialog({
									autoOpen: false,
									bgiframe: true,
									modal: true,
									buttons: {
										Ok: function() {
											$(this).dialog('close');
											$(this).dialog('destroy');
										}
									}
								});

							$("#dialogok").dialog('open');
						}
						
						if(data == 10) 
						{
							
							$('#loading').dialog('close');
							$('#loading').dialog('destroy');
							
							$("#dialog").dialog({
									autoOpen: false,
									bgiframe: true,
									modal: true,
									buttons: {
										Ok: function() {
											$(this).dialog('close');
											$(this).dialog('destroy');
										}
									}
								});
							$("#dialog").dialog('open');
							
						}
					
					  });
	
			  
});

$('.votar').hover(function() {
						   
		$(this).css('cursor','hand');				   
						   
});
