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


	//--horizontal
	var myVerticalSlide = new Fx.Slide('vertical_slide', {mode: 'vertical'});

	myVerticalSlide.hide();

	
	$('h_toggle').addEvent('click', function(e){
		e.stop();
		myVerticalSlide.toggle();
	});
	
	
		
	// When Horizontal Slide ends its transition, we check for its status
	// note that complete will not affect 'hide' and 'show' methods

	
});
