﻿
window.addEvent('domready', function(){

    $('aboutSidebarRetailersNav').removeClass('notthere');
    
    var aboutSidebarRetailersSlide = new Fx.Slide('aboutSidebarRetailersNav', {duration: 200});
        aboutSidebarRetailersSlide.hide();
        
        			
    $('aboutSidebarRetailersLink').addEvent('click', function(e){
            e = new Event(e);
            aboutSidebarRetailersSlide.toggle();
            e.stop();
            this.toggleClass('on');
        });
	});
	