window.addEvent('domready', function() {
	
	// Welkomstekst
		
	var myWelcomeSlide = new Fx.Slide('welcome_slide').hide();


	$('w_toggle').addEvent('click', function(e){
		e.stop();
		myWelcomeSlide.toggle();
	});
	
	// When Vertical Slide ends its transition, we check for its status
	// note that complete will not affect 'hide' and 'show' methods
	myWelcomeSlide.addEvent('complete', function() {
		$('welcome_status').set('html', status[myWelcomeSlide.open]);
	});
	
	
	// Android Acccessoires	
	
	var myVerticalSlide = new Fx.Slide('vertical_slide').hide();


	$('v_toggle').addEvent('click', function(e){
		e.stop();
		myVerticalSlide.toggle();
	});
	
	// When Vertical Slide ends its transition, we check for its status
	// note that complete will not affect 'hide' and 'show' methods
	myVerticalSlide.addEvent('complete', function() {
		$('vertical_status').set('html', status[myVerticalSlide.open]);
	});

});