window.addEvent( 'domready', function(){

 $$( '.dropslideholder_closed' ).each(function(item){
  var thisSlider = new Fx.Slide( item.getElement( '.level2' ), { duration: 700 } );
  thisSlider.hide();
  item.getElement( '.list_toggle' ).addEvent( 'click', function(){ thisSlider.toggle(); } );
 } );
} );

window.addEvent( 'domready', function(){

 $$( '.dropslideholder' ).each(function(item){
  var thisSlider = new Fx.Slide( item.getElement( '.level2' ), { duration: 700 } );
  thisSlider.show();
  item.getElement( '.list_toggle' ).addEvent( 'click', function(){ thisSlider.toggle(); } );
 } );
} );

window.addEvent( 'domready', function(){

 $$( '.dropslideholderblock' ).each(function(item){
  var thisSlider = new Fx.Slide( item.getElement( '.dropslideholderhider' ), { duration: 700 } );
  thisSlider.show();
  item.getElement( '.list_toggle' ).addEvent( 'click', function(){ thisSlider.toggle(); } );
 } );
} );

