function submitComment() {
	var params = Form.serialize($('comment_data'));
	new Ajax.Updater('comments_form', 'process.php', { 
		parameters: params,
		onComplete: newComment }
	);
}
	
function newComment() {
	//Form.reset('comment_data');
}
