window.addEvent('domready', function() {
	var status4 = {
		'true': '<IMG SRC="img/plus.png" BORDER=0 class="plus">',
		'false': '<IMG SRC="img/plus.png" BORDER=0 class="plus">'
	};
	
	//-vertical

	var myVerticalSlide4 = new Fx.Slide('vertical_slide4');

	

	$('v_toggle4').addEvent('click', function(e){
		e.stop();
		myVerticalSlide4.toggle();
	});

	
	
	// When Vertical Slide ends its transition, we check for its status
	// note that complete will not affect 'hide' and 'show' methods
	myVerticalSlide4.addEvent('complete', function() {
		$('vertical_status4').set('html', status4[myVerticalSlide4.open]);
	});


	
});
