$(document).ready(function(){	$("#main h1:first").addClass("title");	$("img#addcommentbutton").click(function(){		$("form#commentsform").removeClass("hidden");		$("textarea[name='Comments']").focus();		return false;	});	InitCommentSubmit();});function InitCommentSubmit() {	$("form[name='WebResponse']").submit(function(){		var options = {beforeSubmit:CommentBeforeSubmit,success:CommentAfterSubmit};		$(this).ajaxSubmit(options); 		return false; 	});}function CommentAfterSubmit() {	alert("Your comment has been added.");	window.location.href = window.location.href;}function CommentBeforeSubmit() {	var subject = $("input[Name='Subject']").val();	var comments = $("textarea[Name='Comments']").val();	if (comments== "") {		alert("Comments are required.");		$("textarea[name='Comments']").focus();		return false;	}	return true;}
