$(document).ready(function() {
	$('.vote form input[name="answer"]').hide();
	
	$('.vote form label').click(function(e) {
		e.preventDefault();
		
		var ffs = $('.vote form input[name="answer"]#' + $(this).attr('for')).attr('data-value');
		$('.vote form input[name="answer"]').val(ffs);
		var date = new Date();
		$.ajax({
			type: 'POST',
			url: $('base').attr('href') + $(this).parent('form').attr('action') + '?_not_cache=' + date.getTime(),
			data: {
				poll: $('.vote form input[name="poll"]').val(),
				answer: ffs
			},
			success: function(data, textStatus, XMLHttpRequest){
				$('.vote-right').html(data);
			}
		});
	});
	
	$('.vote form label').append('<img src="media/common/vote-checkbox.gif" alt="" class="vote-checkbox" />').hover(function(){
		$(this).children('.vote-checkbox').attr('src', 'media/common/vote-checkbox-hover.gif');
	}, function() {
		$(this).children('.vote-checkbox').attr('src', 'media/common/vote-checkbox.gif');
	});
	
	$('.vote form input[type="submit"]').hide();
	
});
