	$(function(){
	
		$('#rating-comment-form').hide();	
		
		$('#rating-comment-form').after('<p id="toggle-rating-form">You can also <a href="#rating-comment-form">add a comment or ask a question</a> with your rating</p>');
			
		$("#starify").children().not(":input").hide();
		
		// Create stars from :radio boxes
		$("#starify").stars({
			cancelShow: false
		});
		
		$("p#toggle-rating-form a").click(function () {
			$("#rating-comment-form").slideToggle("slow");
			$("p#toggle-rating-form").hide();
    	});
    	
    	
	
		
	});