
window.addEvent('domready',function() {
    var current_path = location.pathname.replace('/about/','').replace('/about','');
    var ot_slide = new Fx.Slide('ot', {duration:400} );
    $('tog-ot').addEvent('click', function(e) {
        e = new Event(e);
        ot_slide.toggle();
        e.stop();
    });

    if(current_path.contains('our-team') )
    {
        $('ot').style.display='block';
        $('tog-ot').style.color='#333';
    }
    else
    {
        ot_slide.hide();
        $('ot').style.display='block';
    }
}
);

