$(function () {
        var spawContent = $('body#home div.main > div');
        spawContent.hide().filter(':first').show();
        
        $('div.secondary ul a').click(function () {
                spawContent.hide();
                spawContent.filter(this.hash).show();
                $('div.secondary ul a').removeClass('selected');
                $(this).addClass('selected');
                return false;
        }).filter(':first').click();
});