$(function(){
	$(".rating").children().not(":radio").hide();
	$(".rating").stars({
		callback: function(ui, type, value)
		{
			$.get("index.php?component=rating", {rate: value}, function(data)
			{
			});
		}
	});
});
