window.addEvent('domready', function(){
			//-vertical
			
			var mySlide = new Fx.Slide('more01');
			mySlide.hide();
			var mySlide02 = new Fx.Slide('more02');
			mySlide02.hide();
			var mySlide03 = new Fx.Slide('more03');
			mySlide03.hide();
						
			$('slidein01').addEvent('click', function(e){
				e = new Event(e);
				mySlide.toggle();
				mySlide02.slideOut();
				mySlide03.slideOut();
				e.stop();
			});
			
			$('slidein02').addEvent('click', function(e){
				e = new Event(e);
				mySlide02.toggle();
				mySlide.slideOut();
				mySlide03.slideOut();
				e.stop();
			});
			
			$('slidein03').addEvent('click', function(e){
				e = new Event(e);
				mySlide03.toggle();
				mySlide02.slideOut();
				mySlide.slideOut();
				e.stop();
			});
			
				//Dropdown
	
	// The same as before: adding events
	$('nav-helpmechoose').addEvents({
		'mouseenter': function(){
			// Always sets the duration of the tween to 1000 ms and a bouncing transition
			// And then tweens the height of the element
			this.set('tween', {
				duration: 300,
				
			}).tween('height', '300px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('height', '50px');
		}
	});
	
	// The same as before: adding events
	$('nav-customerservice').addEvents({
		'mouseenter': function(){
			// Always sets the duration of the tween to 1000 ms and a bouncing transition
			// And then tweens the height of the element
			this.set('tween', {
				duration: 300,
				
			}).tween('height', '300px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('height', '50px');
		}
	});
	
	}); 
