/*
    Coded By Steven Bower
    TurnWheel Designs (cc) 2009
    http://turnwheel.com/
*/

$(function() {
    $('a[rel="external"]').click(function() {
        window.open($(this).attr('href'),'_new');
        return false;
    });
    
    $('#minicontact form').submit(function() {
        var errors = [];
        if ($('#sname').val() == "") errors.push('sname');
        if ($('#semail').val() == "" || $('#semail').val().search(/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/) == -1) errors.push('semail');
        
         $('#minicontact label').removeClass('error');
        
        if (errors.length > 0) {
            for (var x in errors) {
                $('label[for="'+errors[x]+'"]').addClass('error');
            }
            
            alert('Incomplete Information. Please provide your name and a valid email address.');
            return false;
        }
    });
});