$zt(function(){

    $('#whowhat .pushpop a').click(function(){

        $('#whowhat .pushpop li').removeClass('selected');

        var id = $(this).parent().attr('id');

        $(this).parent().addClass('selected');

        switch(id) {

            case 'aboutlink':

                $('#mechanics').hide();
                $('#whodunit').hide();

                $('#about_contest').show();

                break;

            case 'howlink':

                $('#whodunit').hide();
                $('#about_contest').hide();

                $('#mechanics').show();

                break;

            case 'wholink':

                $('#about_contest').hide();
                $('#mechanics').hide();

                $('#whodunit').show();

                break;

        }

        return false;

    });

});