function submitComment(handler){
	$.ajax({
		beforeSend:function(){
		$('#commentorName').attr("disabled", "disabled");
		$('#comment').attr("disabled", "disagled");
		$("#commentsTitle").scrollTo(2000); //Speed
		$('#imageComments').prepend("<div id='loadingNotice' style='text-align:center'><h1>Posting your comment</h1> One moment please...<br /><img src='/assets/ajax-loader.gif' /></div>");
		},
		type:"POST",
		url:handler,
		data: "commentorName="+$('#name').val()+"&comment="+$('#comment').val(),
		success: function(msg){
			$('#commentorName').attr("disabled", "");
			$('#comment').attr("disabled", "");
			$('#loadingNotice').fadeOut("slow", function(){$('#loadingNotice').remove()});
			$('#imageComments').prepend(msg);
			// reset the form
			$('#comment').val('');
		}
	});
}
