function checkVoto(){
	if($("#formvoto select").val() == 0) {
		alert("Seleziona un voto valido!");
		return false;
	}
	return true;
}
function vote(){
	if (!checkVoto())
		return;
	$("#sendVoto").html("<img src=\"./extra/immagini/progress_bar.gif\">");
	$("#chooseVoto").attr("disabled", "disabled");
	$.ajax({
		url: './extra/global/performVoto.php',
		data: $("#formvoto").serialize(),
		type: 'POST',
		dataType: 'html',
		success: function(data, textStatus, xhr){
			if (xhr.status=="200"){
				$("#sendVoto").html("Il tuo voto: "+$("#formvoto select").val());
				$("#chooseVoto").removeAttr("disabled");
				$("#chooseVoto").html("Grazie per aver votato!");
				$("#average").html(data);
			}
		},
		error: function(xhr, textStatus, errorThrown){
			alert("Operazione non eseguita. Errore: "+xhr.status);	
		}
		   
	});
	//return false;
}

