$(document).ready(function() {

    $('.expandable h4').click(function() {
        $(this).toggleClass('active');
        $(this).siblings('.expandable_content').toggleClass('hidden');
    });

    $('.thumbs a').click(function() {
        var bioId = $(this).attr('rel');
        $('.bio').hide();
        $('#' + bioId).show();
        return false;
    });

});