var $v = jQuery.noConflict();

$v(function(){
	$v('#key_yes').click(function(){
		$v('#blockVote').html('<img src="/img/ajax-loader.gif" width="31" height="31" alt="" border="0">');
		$v.post('/vote',{ yes: 1 },changerating);
	})
});
$v(function(){
	$v('#key_not').click(function(){
		$v.post('/vote',{ yes: 0 },changerating);
	})
});
function changerating(data) {
	var response = data.split("|");
	$v('#rating').html(response[0]);
	$v('#votes').html(response[1]);
	$v('#blockVote').html(response[2]);
	$v('#pos_common').html(response[3]);
	$v('#pos_cat').html(response[4]);
}

