function showText(){
    $('#main h2').click( 
    function(){
    $('#main .text').hide();
    $('#president img').hide();
    $('#president p').hide();
    $(this).next('.text').show();
}
);
}

function showPresident(){
   $('#president h2').click(
      function(){
      $('#main .text').hide();
      $('#president img').show();
      $('#president p').show();
}
);
}

function showContactNav(){
    $('a#contactusLink').click( 
    function(){
    $('#main .text').hide();
    $('#president img').hide();
    $('#president p').hide();
    $('#contact .text').show();
}
);
}
function showChaptersNav(){
    $('a#chaptersLink').click( 
    function(){
    $('#main .text').hide();
    $('#president img').hide();
    $('#president p').hide();
    $('#chapters .text').show();
}
);
}
