window.addEvent( 'domready', function(){
	$$( '.moreInfoWrapper' ).each(function(item){
		var thisSlider = new Fx.Slide( item.getElement( '.asinfo' ), {mode: 'horizontal'} );
		thisSlider.show();
		item.getElement( '.assortiment' ).addEvent( 'click', function(){ thisSlider.toggle(); } );
	} );
} );
