$(document).ready(function(){
	$("#poll").submit(function(){
		var poll_id = $("#poll_id").val();
		var answer  = $("input[@name='answer']:checked").val();

		if(answer === undefined){
			alert('Please select an option for the poll.');
			return false;
		} else {
			//alert('Thank you for selecting option #' + answer);
			
			$.get("/includes/ajax.poll.php", {answer: answer, poll_id: poll_id}, function(data){
				//alert(data.toString());
				$("#home_poll").html(data);
			});
			
			return false;
		}
	});
});