$(document).ready(function(){
  $("#stars-wrapper").stars({
    inputType: "select",
    oneVoteOnly: true,
    callback: function(ui, type, value) { 
        $("#stars-wrapper").stars("select", value);
        jQuery.get("/video.asmx/Vote", { video: $("#videofile").val(), rating: value });
        var votes = $("#numvotes").text();
        votes++;
        $("#numvotes").text(votes);
      }
  });
});
