$(function() {
	CommentForm.init();

});

var CommentForm = {
	init: function() {
		var cc = this;	
		cc.events();
	},
	events: function() {
		var cc = this;
		$("#PostCommentAddForm").validate();	
	}
}