jQuery(document).ready(function () {
	commentDiv = jQuery("#detailCnt").find("#comment").html();
	commentDiv = "<div id='comment'>"+commentDiv+"</div>";
	jQuery("#detailCnt #comment").remove();
	jQuery("#detailCnt script").remove();
	
	//jQuery("#detailDesc").html(jQuery("#detailCnt #detailCmt").html());
	jQuery("#detailCmt").empty();
	jQuery("#detailCmt").append(commentDiv);
});

