// JavaScript Document
		window.addEvent( 'domready', function(){
			$$( '.hiddenInfoWrapper' ).each(function(item){
				var thisSlider = new Fx.Slide( item.getElement( '.moreInfo' ), { duration: 300 } );
				thisSlider.hide();
				item.getElement( '.divToggle' ).addEvent( 'click', function(){ thisSlider.toggle(); } );
			} );
		} );
	
		window.addEvent( 'domready', function(){
			$$( '.shownInfoWrapper' ).each(function(item){
				var thisSlider = new Fx.Slide( item.getElement( '.moreInfo' ), { duration: 300 } );
			//	thisSlider.hide();
				item.getElement( '.divToggle' ).addEvent( 'click', function(){ thisSlider.toggle(); } );
			} );
		} );

		window.addEvent( 'domready', function(){
			$$( '.menuInfoWrapper' ).each(function(item){
				var thisSlider = new Fx.Slide( item.getElement( '.moreInfo' ), { duration: 300 } );
				thisSlider.hide();
				item.addEvent( 'mouseover', function(){ thisSlider.slideIn(); } );
				item.addEvent( 'mouseout', function(){ thisSlider.slideOut();  } );

			} );
		} );
