
window.addEvent('domready', function() {
	
	
	var status = {
		'true': '<img src="/themes/cpvl/images/BT_panneau_Close.png" alt="" border="0"/>',
		'false': '<img src="/themes/cpvl/images/BT_panneau_Open.png" alt="" border="0"/>'
	};

	//-vertical

	if ($('liste_actions'))
	{
		var myVerticalSlide = new Fx.Slide('liste_actions',{duration: '350', transition: 'bounce:out'}).hide();
	
		$('v_toggle').addEvent('click', function(e){
			e.stop();
			myVerticalSlide.toggle();
		});
	
		if ($('link_deroule'))
		{
			$('link_deroule').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]);
		});

	}

});
