jQuery(function ($) {
	$(document).ready(function(){
		
		// Auto Select Text in the <textarea> tag until something is typed in.
		$("textarea.auto_select_text").click(function(){
			$(this).select();
		}).keydown(function(){
			$(this).unbind('click').unbind('keydown').unbind('paste');
		}).bind("paste", function () {
			$(this).unbind('click').unbind('keydown').unbind('paste');
		});
		
		// Question in list highlight on hover.
		$("li.question").hover(
			function(){ $(this).css('background-color', '#f7f7f7'); },
			function(){ $(this).css('background-color', '#fff'); });
		
		$(".char_counter").charCounter(); // Maxlength on textarea and input elements
		$('.star_rating').rating({required:true}); // Star Rating
		$('.nojs').remove(); // Remove No JS Nodes
		
	});// End Document Ready
});// End jQuery Scope