﻿/*================================
	Rating control
==================================*/
$(document).ready(function() {
	$(".stars-wrapper").stars({
		oneVoteOnly: true,
		inputType: "select",
		split: 2,
		callback: function(ui, type, value) {
			// Send request to the server using POST method

			$.post("/AJAXWebservice/ContentRatingService.asmx/StoreRating", { rating: value, guid: $(".currentItem")[0].value, user: $(".currentUser")[0].value }, function() { }, "json");
		}
	});
	$(".disabledstars-wrapper").stars({
		inputType: "select",
		split: 2,
		disabled: true,
		oneVoteOnly: true
	});
});
