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

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

		item.getElement( '.divSlideIn' ).addEvent( 'click', function(){ thisSlider.slideIn(); } );
		item.getElement( '.divSlideOut' ).addEvent( 'click', function(){ thisSlider.slideOut(); } );
	} );
} );