//-vertical

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

 $$( '.moreInfoWrapper' ).each(function(item){

  var thisSlider = new Fx.Slide( item.getElement( '.slide' ), { duration: 500 } );

  thisSlider.hide();

  item.getElement( '.slider' ).addEvent( 'click', function(){ thisSlider.toggle(); } );

 } );

} );

