$(function(){
    $('#contactForm').submit(function(){
        $('#topic', this).val() ? $('#topic', this).removeClass('error') : $('#topic', this).addClass('error');
        $('#name', this).val() ? $('#name', this).removeClass('error') : $('#name', this).addClass('error');
        $('#email', this).val() ? $('#email', this).removeClass('error') : $('#email', this).addClass('error');
        $('#phone', this).val() ? $('#phone', this).removeClass('error') : $('#phone', this).addClass('error');
        $('#body', this).val() ? $('#body', this).removeClass('error') : $('#body', this).addClass('error');
        var hasError = false;
        $('#contactForm input.text, #contactForm textarea').each(function(i){
            if ($(this).hasClass('error')) {
                hasError = true;
            }
        });
        if (hasError) {
            return false;
        } else {
            return true;
        }
    });
    
    $('input.button').mouseover(function(){
        $(this).addClass('hover');
    }).mouseout(function(){
        $(this).removeClass('hover');
    });
});