function vertSlideDiv(){
	
var fx = new Fx.Slide('contactFormHolder', { wait: false }).hide();
	$('contactLink').addEvent('click', function(){
		fx.toggle('vertical');
		if (document.getElementById('contactLink').innerHTML == 'Show Contact Form'){
			document.getElementById('contactLink').innerHTML = 'Hide Contact Form';
		} else {
			document.getElementById('contactLink').innerHTML = 'Show Contact Form';
		}			
	});
	
}
