window.addEvent('domready', function() {
	if( !document.all ) {
		var recentWorkVerticalSlide = new Fx.Slide('recentWorkNav');
		
		$('buttonRecentWork').addEvent('mouseenter', function(e) {
			// You often will need to stop propagation of the event
			e.stop();
			recentWorkVerticalSlide.slideIn();
		});
		
		$('buttonRecentWork').addEvent('mouseover', function(e) {
			// You often will need to stop propagation of the event
			e.stop();
			recentWorkVerticalSlide.slideIn();
		});
		
		$('navigation').addEvent('mouseleave', function(e) {
			// You often will need to stop propagation of the event
			e.stop();
			recentWorkVerticalSlide.slideOut();
		});
		
		recentWorkVerticalSlide.hide();
	}
});