(function($) {
$(function() {

    $('ul.tabs').delegate('li:not(.current)', 'click', function() {
        $(this).addClass('current').siblings().removeClass('current')
            .parents('div.section').find('div.box').hide().eq($(this).index()).show();
    })

    $('dd p').hide();
    $('dt p').wrapInner('<span></span>');
    $('dt span').css({borderBottom: '1px dashed', cursor: 'pointer'});
    $('dt').click(function() {
        $(this).nextAll('dd').eq(0).find('p').toggle(150);
    });

})
})(jQuery)
