
$(document).ready(function() {


	$("[id^=rating_]").hover(function() {

		rid = $(this).attr("id").split("_")[1];
		$("#rating_"+rid).children("[class^=star_]").children('img').hover(function() {

			$("#rating_"+rid).children("[class^=star_]").children('img').removeClass("hover");
			

			/* The hovered item number */
			var hovered = $(this).parent().attr("class").split("_")[1];
			
			document.getElementById("rating_count").innerHTML = " " + hovered + " ";
			document.getElementById('rating').value = hovered;

			while(hovered > 0) {
				$("#rating_"+rid).children(".star_"+hovered).children('img').addClass("hover");
				hovered--;
			}
		});
	});

});
