$(document).ready(function(){
	
	$('a.poll-vote').click(function(event) {
		$.ajax({
		    type:   'POST',
		    url:    $(this).attr('href'),
		    data:	$(this).serialize(),
		    error: function(msg) {
				$('#poll-response').text(msg);
		    },
		    success:  function(msg) {
		    	$('#poll-response').text(msg);
		    }
		});
		event.preventDefault();
	});

	//$('#footer').show().css('top', $(document).height() + 'px');
});
