function showSectionText ()
{
	var targetText = this.id + "Text";
	document.getElementById(targetText).style.display = "block";
}

function hideSectionText ()
{
	var targetText = this.id + "Text";
	document.getElementById(targetText).style.display = "none";	
}

var sections = ["sectionIt", "sectionAttorney", "sectionWeb", "sectionAdministrator", "sectionPrime", "sectionAuditor"];

for (var i=0; i < sections.length; i++)
{
	document.getElementById(sections[i]).onmouseover = showSectionText;
	document.getElementById(sections[i]).onmouseout = hideSectionText;
}
