
window.addEvent( 'domready', function(){

$$( '.moreInfoWrapper' ).each(function(item)
{  
var thisSlider = new Fx.Slide( item.getElement( '.moreInfo' ), { duration: 500 } ); 
 thisSlider.hide();  
 new SmoothScroll({ duration: 1800 });
 item.getElement( '.divToggle' ).addEvent( 'click', function(){ thisSlider.toggle();
 
 } 
 );
  } 
  );
  }
  
  );
