function irate(id,type,voice){
	
	$.ajax({
	  type: "POST",
	  url: 'http://' + location.host + '/ajax/ajax.rate.php',
	  data: 'type=' + type + '&id=' + id + '&voice=' + voice,
	  success: function(msg){
              $("div#r_" + id + "_" + type).html(msg);
          }
        });
}

function its_yours(){
    $.jGrowl("Вы не можете голосовать за свои вещи!");
}

function not_reg(){
    $.jGrowl("Вам бы войти!");
}

function already(){
    $.jGrowl("За это вы уже голосовали!");
}