var Judging = {
    setup: function() {
        $('.bio .funny_bio').hide();
        
        $('.bio').mouseover(function() {
            $('.funny_bio', this).show();
            $('.serious_bio', this).hide();
        });
    }
}

$(document).ready(Judging.setup);

