function submitComment(){
	var postname = document.getElementById("postname");
	var thecomment = document.getElementById("thecomment");
	$.post("doComment", {name: postname.value, thecomment: thecomment.value}, function(data){
		document.getElementById("comments").innerHTML += "<pre class='newcomment' style='display:none;'>"+data+"</pre>";
		$('.newcomment').fadeIn('slow');
	});
}

