// options for captcha
var RecaptchaOptions = {
    tabindex: 6 // Make sure there is no trailing ',' at the end of the RecaptchaOptions dictionary
};

// main onload function
$(function() {
    // executive team hover effects
    var current_executive_member = 'regina';
    $('.photo').click(function() {
        $('.photo img').css('display', '');
        $(this).find('img').css('display', 'none');
        $(this).find('img.rollover').css('display', 'inline-block');
        current_executive_member = $(this).attr('member');
    });
    $('.photo').hover(function() {
        $('.member_info').hide();
        $('.' + $(this).attr('member') + '_info').show();
    }, function() {
        $('.member_info').hide();
        $('.' + current_executive_member + '_info').show();
    });
    
    $('.regina_photo').click();
});

