box.dom(function() {
    
    var timeline = box.dom('#timelineWrapper');
    
    var mouseOverPeriod = function() {
        var elm = box.dom(this).addClass('expanded');
        
        timeline.addClass(elm.getBoxDatas('id'));
        elm.children('div.expand').css('display', 'block');
    };
    
    var mouseOutPeriod = function() {
        timeline.removeClass('pregnancy').removeClass('baby');
        box.dom(this).removeClass('expanded').children('div.expand').css('display', 'none');
    };
    
    var focusPeriod = function() {
        mouseOverPeriod.call(this.parentNode);
    };
    
    var blurPeriod = function() {
        mouseOutPeriod.call(this.parentNode);
    };
    
    box.dom('#timelineInner li.period')
        .hover(mouseOverPeriod, mouseOutPeriod)
        .find('a.periodLabel')
            .focus(focusPeriod)
            .blur(blurPeriod);
    
    if ($('#asideVideo').length) {
        if (Math.floor(Math.random() * 2) !== 0) {
            $('#asideVideo').removeClass('on').addClass('off');
            $('#ourEditorialBoard').removeClass('off').addClass('on');
        }
    }
    
});
