window.addEvent('domready', function() {
	var status = {
		'true': 'open',
		'false': 'close'
	};
	
	//-vertical

	var impressum = new Fx.Slide('slide_01').hide();

	$('i_toggle').addEvent('mouseover', function(e){
		e = new Event(e);
		e.stop();
		impressum.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.close]);
	});
});
