(function($){
	$(function(){
		$(document).ready(function(){
			$("#commentform").validate({
				errorPlacement: function(error, element) {
					error.insertAfter(element.next());
				},
				messages: {
					comment:""
				}
			});
		});
	});
})(jQuery);