$(document).ready(function() {
	
	$(".stars-favorite").stars({
		//cancelShow: false
	});

	$(".stars-favorite").css ("display", "block");
		
	$(".stars-favorite").click(function () {			
		var eventID = $(this).attr('eventID');	
		var randomInt = $(this).attr('randomInt');

		var hashedID = 	$(this).attr('hashedID');
		var rate = 	$("#star-span-id-"+randomInt+" > input").attr('value');
		
		$(".loading-text").text("Saving...").fadeIn('slow');						
		$.post("includes/php/ajax-save-delegate.php", {rate: rate, hashedID: hashedID, eventID: eventID}, function(json)
		{	
			//$("#star-span-id-"+randomInt+" > input").attr('disabled', 'disabled');	
			//$("#star-span-id-"+randomInt+" > input").stars("selectID", -1);
			var msg = "";
			if (json.status == "saved") {
				msg = "Delegate Saved";					
			}
			else if (json.status == "removed") {
				msg = "Removed Bookmark";					
			}			
			else {
				msg = "Please Retry";
			}
			$(".loading-text").text(msg).fadeOut('slow');					
			$('#saved-delegates-notice').fadeIn(2000).css ("display", "block");	
		}, "json");	
	});
});
