
$(function() {
	$('#submit').click(function() {
		
		//$('#container').append('<img src="img/loading.gif" alt="Currently Loading" id="loading" />');
		
		var selectedOption = $("input[name='poll']:checked").val();
		
		$.ajax({
			url: 'submitPoll.php',
			type: 'POST',
			data: 'poll=' + selectedOption,
			success: function(result) {
				$("#poll").animate( { opacity:"0" }, 1000, "linear", loadPollResults);
			}
		});
		
		return false;
	});
	
	function testme() {
		$('#result').append("boom");
	}
	
	function loadPollResults() {
		
		$.ajax({
			url: 'getPollResults.php',
			type: 'GET',
			success: function(result) {
				$('#poll').html(result);
				$('#poll').animate( { opacity:"1" }, 1000 );
			}
		});
		
	}
	
});
