$(document).ready(function() {
    
    //Setup FP tabs
    $("#projects").verticalTabs({
        event: 'mouseover'
    });

    //With the tabs setup we can now show the div
    $("#projects").removeClass('tabs-loading');

});


function checkContactForm() {
    if ($.trim($('#email').val()) === '') {
        alert('Please provide a valid email addess');
        return false;
    } else if ($.trim($('#subject').val()) === '') {
        alert('Please provide a subject for this message');
        return false;
    } else if ($.trim($('#message').val()) === '') {
        alert('Please provide a valid message');
        return false;
    } else if ($('#recaptcha_response_field').val() === '') {
        alert('You must enter the values shown in scrabbled message below!  If you are unable to read the text refresh or play the audio.');
        return false;
    }

    return true;
}

