$(document).ready(function() {

    $('#topic-chooser li a').mouseover(function() {
        $('.topic-content').hide();
        $('#' + $(this).attr('class')).show();
    }).eq(0).triggerHandler('mouseover');

});