var $about = {

    milestones: function() {
        var context = $('#milestones');
        var tabs = $('.tab-slider ul', context);

        var displayContent = function(obj) {
            $('ol > li', context).addClass('hide');
            obj.removeClass('hide');
        };

        $('ol > li', context).addClass('hide');
        $('ol > li:first', context).removeClass('hide');

        tabs.scroller(8).find('a').bind('click', function(e) {

            tabs.find('li').removeClass('on');
            $(this).parent().addClass('on');
            displayContent($($(this).attr('href')));

            e.preventDefault();
        });
    }
};