window.addEvent( 'domready', function(){
	$$( '.moreInfoWrapper' ).each(function(item){
		var menuShow = item.getElement( '.subProducts' );
		if (menuShow){
			menuShow.setStyle('display', 'block');	
		}
		var thisSlider = new Fx.Slide( item.getElement( '.subProducts' ), { duration: 800, transition: Fx.Transitions.Quint.easeInOut } );
		thisSlider.hide();
		
		item.getElement( '.subProducts' ).addEvent( 'mouseenter', function(){ thisSlider.cancel(); thisSlider.slideIn(); } );
		item.getElement( '.menu' ).addEvent( 'mouseenter', function(){ thisSlider.cancel(); thisSlider.slideIn(); } );
		item.getElement( '.subProducts' ).addEvent( 'mouseleave', function(){ thisSlider.cancel(); thisSlider.slideOut(); } );
		item.getElement( '.menu' ).addEvent( 'mouseleave', function(){ thisSlider.cancel(); thisSlider.slideOut(); } );
		
		/*
		item.addEvent( 'mouseenter', function(){ thisSlider.cancel(); thisSlider.slideIn(); } );
		item.addEvent( 'mouseleave', function(){ thisSlider.cancel(); thisSlider.slideOut(); } );
		*/
		
	} );
} );
