$(document).ready(function(){
	
	// Scroll to form below
	$("h4").click(function() {
	
		formOffset = $("#comments form").offset().top;
		$("html, body").animate({scrollTop: formOffset}, 1000);
		
	});
	
});
