$(document).ready(function() {
	$("#stars-wrapper").stars({
		oneVoteOnly: true,
                showTitles: true
	});
	
	//$("#stars-wrapper").on("click",function() {
	$("#feedbackForm").hide();
	$("#stars-wrapper").click(function() {
		$rating = $("input[name=newrate]").val();
		$ratingURL = $("input[name=newrateurl]").val();
		if(parseInt($rating) <= 3){ $("#feedbackForm").slideDown(); }
		$("#rtp").load("/media/newarkandsherwood/styleassets/php/ratethispage.php?rating="+$rating+"&rurl="+$ratingURL);	
	});

});
