function descriptiontoggle() {
	//height effect
	myHeight = new fx.Height('contact_info');
	myHeight.hide();
	document.getElementById('contact_info').className = 'altcontact';
	document.getElementById('contact_text').className = 'altcontact';
	$('contact').onclick = function() {
		myHeight.toggle();
		return false;
		};
	};
	
addLoadEvent(descriptiontoggle);