$(function() {
	$("#article-rating a").each( function() {
		$(this).click ( function() {
			$("#article-rating").addClass("loading");
			var rating = parseInt( $(this).text() );
			var post_id = $("#post-id").val();
			$.ajax({
			  type: "GET",
			  url: "/wp-content/plugins/ms-ratings/ms-ratings-ajax.js.php?MSR_post_id="+post_id+"&MSR_rating="+rating,
			  dataType: "script",
			  success: function(error){
			  	$("#article-rating").removeClass("loading");
			  	if(!error) {
			  		$("#article-rating").addClass("success");
			  	}
			  }
			});
			return false;
		});
	});
});
