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);
      }
    });
}
$(document).ready(function(){
    $('.preview_video').each(function(){
            var so = new SWFObject('admin/js/jwplayer/player-viral.swf','ply','506','320','9','#ffffff');
            so.addParam('allowfullscreen','true');
            so.addParam('allowscriptaccess','never');
            so.addParam('wmode','opaque');
            so.addVariable('file',BASE_URL+$(this).attr('video'));
            so.write($(this).attr('id'));
    });    
});
