window.addEvent('domready', function(){

    $$('.toggleSlide').each(function (i,x,a){
        var thisSlider = new Fx.Slide(i,x,a).hide();
       $(i.id+'_lnk').addEvent('click',function(){
      thisSlider.toggle();
      return false;
    }.bind(i));
    });  
	
	new SmoothScroll({ duration: 900 });  // scroll to top

});
