$(window).ready(function(){
	$("#votaEncuesta").click(function(){
		$("#encuesta").load("encuestaAction.php", {
			id : $("#idEncuesta").attr("value"),
			respuesta : $(".respuesta:checked").val()
		});
	});
});	
