glow.ready(function() {
    var commentForm = new glow.forms.Form('#submit-comment');
    commentForm.addTests('name',['required']);
    commentForm.addTests('email',['required'],['isEmail']);
    commentForm.addTests('comment',['required']);
});