/*
	ajax rating
*/

function sendRating(vote,productid,boxid) {
	$("#loading_"+boxid).toggle();
	$.getJSON("ajax_rating.php", {"vote": vote, "productid": productid}, 
	  function (data, textStatus) {
	    $("#loading_"+boxid).toggle();
		if (textStatus == 'success')
		{
			$("#"+boxid).html(data["html"]);
		}
	  }
	);
	return false;
}
