$(function() {
	
	var self=this;

	var $voteLabel = $('.vote .field label');


	$voteLabel.hover(function(){
		$(this).addClass('over');

	}, function(){
		$(this).removeClass('over');
	});



	$voteLabel.click(function(){

		$(this).parent().parent().find('label').removeClass();
		
		$(this).parent().parent().find('input').removeAttr('checked');	
		
		$(this).addClass('choise');
		$(this).find('input').attr('checked', 'checked');

		return false;

	});


})