function newsVote(vote)
{
    var stiri_id = $('#stiri_id').val();
    $.ajax({
      url: "news.ajax.php?action=vote&stars="+vote+"&stiri_id="+stiri_id,
      cache: false,
      success: function(html){
          $("#news_voting").empty().html(html);
      }
    });
}