$(document).ready(function() {

	//$(".comments ol").quickPager({pageSize : "10"});
	$('textarea.expanding').autogrow();
	
	$(".expanding").focus(function() {
		if(!$(this).hasClass("active")){
			$(this).val('').addClass("active");
		}
	});
	
});