
$(document).ready(function(){

    //----------------------------
    // stars
    $(".stars").bind("click", function(e){

       if($(this).attr("vote") == '0')
       {
            var item_id = $(this).attr('item_id');

             var offset = $(this).offset();
             var pos = 0;

             if(e.pageX > offset.left)
                pos = e.pageX - offset.left;
             else
                pos = offset.left - e.pageX;

                pos = parseInt(pos / 22) + 1;

                if(pos > 5) pos = 5;
                if(pos < 0) pos = 0;

             $(this).removeClass("stars0").removeClass("stars1").removeClass("stars2").removeClass("stars3").removeClass("stars4").removeClass("stars5");

             $(this).addClass("stars"+pos).attr("vote",pos).css("cursor","auto");

             $.get("/ajax.php", {do: 'vote',id: item_id , rating: pos}, function(){
                if(!$("#helper_star").length)
                {
                    $("BODY").append('<div id="helper_star" style="width:130px;font-size: 14px;"><div class="itemName">Ваш&nbsp;голос&nbsp;засчитан</div> <div><a href="javascript:void(0);" id="close_star">Закрыть окно</a></div></div>');
                    $("#helper_star").css("left", offset.left - 70).css("top", offset.top - 100).fadeIn(400);
                }
             });
       }

   });



   $("#close_star").live("click",function(){
      $("#helper_star").fadeOut(400).remove();
      if(navigator.userAgent.indexOf("MSIE 6.0") !== -1) {
            $("select").css("visibility","visible");
      }

   });

});

