function showContact()
{
	var contacts = [
		// class,       label,         email,            domain
		[ "coach",     "Coach Jones",  "steven.jones",  "pisd.edu" ],
		[ "booster",   "Booster Club", "jmmyers7",      "juno.com" ],
		[ "webmaster", "Webmaster",    "peshwebmaster", "burling-home.com" ]
	];
   var text = "";
	text += "<ul id='nav'>";
	text += "<li class='top'><a href='#nogo2' class='contact'><b>Contact</b><!--[if gte IE 7]><!--></a><!--<![endif]-->";
	text += "  <!--[if lte IE 6]><table><tr><td><![endif]-->";
	text += "  <ul class='sub'>";
	for(var i=0; i<contacts.length; i++ ) {
			  text += "<li><a href='mailto:" + contacts[i][2] + "@" + contacts[i][3] + "'" +
						 " class='" + contacts[i][0] + "'><b>" + contacts[i][1] + "</b></a></li>";
	}
	text += "</ul>";
	text += "<!--[if lte IE 6]></td></tr></table></a><![endif]-->";
	text += "</li>";
	text += "</ul>";
	document.write(text);
}

