window.addEvent('domready', function() {
	var status = {
		'true': 'Click here to hide search form',
		'false': 'Click here to search our database'
	};
	
	//-vertical

	var myVerticalSlide = new Fx.Slide('vertical_slide').hide();

	$('v_toggle').addEvent('click', function(e){
		e.stop();
		myVerticalSlide.toggle();
		$('vertical_status').set('html', status[myVerticalSlide.open]);
	});

	// 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]);
	});
	
	new Fx.SmoothScroll({ duration:700 }, window); //700 milliseconds to 

});
