$(document).ready(function(){
    $('.nav a').click(function(){
        var href = $(this).attr('href');
        $('#sections .current').slideUp('slow', function(){
            $(this).removeClass('current');
            $(href).slideDown('slow').addClass('current');
            var newHeight =  $(href)[0].scrollHeight - $('#content .border-bottom').height();
            $('#content .border-bottom').animate({height: '+=' + newHeight}, 1000);
        });
        return false;
    });
});
