$(function(){
	$("#rat").children().not(":radio").hide();

	// Create stars
	$("#rat").stars({
		callback: function(ui, type, value)
		{
			$("#loader").show();
			$("#rat").fadeOut(function() //Note: IE sucks when fading 32bit PNG!
			{
				$.post($("#rat").attr('action'), {'data[rate]': value}, function(db)
				{
					ui.select(Math.round(db.avg));
					$("#avg").text(db.avg);
					$("#votes").text(db.votes);

					$("#rat").fadeIn();
					$("#loader").fadeOut();

				}, "json");
			});
		},
		oneVoteOnly: true
	});
});
