$(document).ready(function() {

$(".star-rating a").click(function() {
	$("#ajax-loader").show();
	var info = 	$(this).attr("rel").split("|");				  
	var url = "/apps/rate.php?type_id="+info[0]+"&parent_id="+info[1]+"&ip="+info[2]+"&rating="+info[3]+"&width="+info[4];

	$.getJSON(url, function(json){

		if (json.status == 0) {
			alert("fail");	
		}
		else {
			$(".current-rating").css("width", json.width+"px");
			$("#num-votes span").html(json.votes);
			$("#ajax-loader").hide();
		}

	});

	return false;

});


});
