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

window.addEvent( 'domready', function(){ 
	$$( '.moreInfoWrapper2' ).each(function(item){  
		var thisSlider = new Fx.Slide( item.getElement( '.moreInfo2' ), { duration: 500 } );  
		thisSlider.hide();  
		item.getElement( '.divToggle2' ).addEvent( 'click', function(){ thisSlider.toggle(); } ); } );} );
