function title_select(name) {
    // check if we need to switch
    if (('title-tab-'+name) == $('.title-tabs dl dt.active').attr('id')) {
        return;
    }
    
    // hide all
    $('.title-tabs dl dt').attr('class', '');
    $('.title-tabs div:visible').hide();
    
    // show specified
    $('#title-tab-'+name).attr('class', 'active');
    $('#title-container-'+name).fadeIn({speed:0.2});
}

$(function() {
    $('ul.n > li > a').click(function () {
        if (location.pathname.indexOf(this.pathname) == 0) {
            return true;
        }
        $(this).parent().find('ul').slideToggle();
        this.blur();
        return false;
    });
});