﻿	function SetRating(rank, inputID)
	{
		$("img." + inputID + "_img").each(function () {
			if (this.id <= rank) this.src = "/images/star_1.gif";
			else this.src = "/images/star_0.gif";
		});
		$("#" + inputID).attr("value", rank);
	}
