/* simple jquery-based comment preview */

$(function() {
	$("button#button-comment-preview").click(function() {
		/*alert($("#comment").val());*/
		var strCommentText = $("#comment").val();
		var strCommentFormattedText = strCommentText.replace(/\n/g, "<br />");
		$("div#comment-preview").html(strCommentFormattedText);
	});
});