/*
window.addEvent('domready', function(){
	
	// implement home page super-nav
	var mensContainer = new Fx.Style('mens-container', 'width',{duration:300, transition: Fx.Transitions.Expo.easeOut});
	var mensContainer = new Fx.Style('mens-container', 'width',{duration:300, transition: Fx.Transitions.Expo.easeOut});
	var mensInfo = new Fx.Style('mens-expanded-info', 'opacity',{duration:1600, transition: Fx.Transitions.Expo.easeOut});
	var mensInfoButtons = new Fx.Style('mens-expanded-info-buttons', 'opacity',{duration:1600, transition: Fx.Transitions.Expo.easeOut});
	mensInfo.set(0);
	mensInfoButtons.set(0);
	
	var womensContainer = new Fx.Style('womens-container', 'width',{duration:300, transition: Fx.Transitions.Expo.easeOut});
	var womensInfo = new Fx.Style('womens-expanded-info', 'opacity',{duration:1600, transition: Fx.Transitions.Expo.easeOut});
	var womensInfoButtons = new Fx.Style('womens-expanded-info-buttons', 'opacity',{duration:1600, transition: Fx.Transitions.Expo.easeOut});
	womensInfo.set(0);
	womensInfoButtons.set(0);
	
	// trigger the menswear slider
	$('mens-container').addEvent('mouseenter', function(e){
		e = new Event(e);
		womensContainer.start(0);
		mensContainer.start(940).chain(function(){
			// executes immediately after completion of above effect
			mensInfo.start(1);
			mensInfoButtons.start(1);
		});
		e.stop();
	});
	$('mens-container').addEvent('mouseleave', function(e){
		e = new Event(e);
		womensContainer.start(465);
		mensContainer.start(465).chain(function(){
			// executes immediately after completion of above effect
			mensInfo.set(0);
			mensInfoButtons.set(0);
		});
		e.stop();
	});
	
	// trigger the womenswear slider
	$('womens-container').addEvent('mouseenter', function(e){
		e = new Event(e);
		mensContainer.start(0);
		womensContainer.start(940).chain(function(){
			// executes immediately after completion of above effect
			womensInfo.start(1);
			womensInfoButtons.start(1);
		});
		e.stop();
	});
	$('womens-container').addEvent('mouseleave', function(e){
		e = new Event(e);
		mensContainer.start(465);
		womensContainer.start(465).chain(function(){
			// executes immediately after completion of above effect
			womensInfo.set(0);
			womensInfoButtons.set(0);
		});
		e.stop();
	});
	
});
*/