
/* languageLabel (Common)
全部显示 | commonLabel(0)
全部隐藏 | commonLabel(1)
显示相关 律师 | commonLabel(2)
隐藏相关 律师 | commonLabel(3)
全部显示 | commonLabel(4)
全部隐藏 | commonLabel(5)
概述 | commonLabel(6)
主页 | commonLabel(7)
律师 | commonLabel(8)
 */

window.addEvent('domready', function() {
	var status = {
		'true': '全部隐藏',
		'false': '全部显示'
	};
	
	//-vertical

	var myVerticalSlide = new Fx.Slide('vertical_slide');
	myVerticalSlide.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]);
	});

});