/***************************************************************
 * Javascript Functions - Mouseover Rollovers for about_us.htm *
 * Revised:				By: Martha Gehlken                     *
 ***************************************************************/
 
function showBlurb(elid) {
	//alert(elid);
	var heading = document.getElementById(elid)
	heading.style.display = "block";
}
function hideBlurb(elid) {
	var heading = document.getElementById(elid)
	heading.style.display = "none";
}