function toogle(id) {

	var status = {
		'true': 'open',
		'false': 'close'
	};
	
	//-vertical
    //var element = document.getElementById(id).setAttribute('style','display:block');
    var element = document.getElementById(id).style.display = 'block';
	var myVerticalSlide = new Fx.Slide(id);
	myVerticalSlide.toggle();	
	// When Vertical Slide ends its transition, we check for its status
	// note that complete will not affect 'hide' and 'show' methods
	
}
function hide(id) {
	var status = {
		'true': 'open',
		'false': 'close'
	};
	
	//-vertical

	var myVerticalSlide = new Fx.Slide(id);
	myVerticalSlide.hide();	
	// When Vertical Slide ends its transition, we check for its status
	// note that complete will not affect 'hide' and 'show' methods
	
}
