

function postComment(responseString){
	
	if(responseString.indexOf("errorMsg") == -1){
	
		$('#commentsList').load('/include/blog/update_comments.php?hash=' + responseString);

                $('#commentForm').fadeOut('slow');
                $('#commentInfo').html("<h2>Thank you for posting.<br/>Your post will appear shortly.</h2>");
	
	}

}


