(function($) {

$('#index > li').not(':first-child').hide();

$('#header a')
    .click(function() {
        var inactive = 'inactive';

        $(this)
            .removeClass(inactive)
            .siblings()
            .addClass(inactive);

        $('#index > li')
            .hide()
            .filter($(this).attr('href'))
            .slideDown('fast');

        return false;
    })
    .first()
    .click();

})(jQuery);

