function showPageHeader()
{
	var text = "";
	text += "<a href='index.html'><div id='header'>";
	text += "<img src='images/page_header.jpg' border='0' alt='Plano East Lady Panthers Volleyball' />";
	//text +=	"<img src='images/page_header.jpg' border='0' width='981' height='156' alt='Plano East Lady Panthers Volleyball' /></div></a>";
	text += "</div></a>";
	document.write(text);
}

function showPageContact()
{
	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 = "<div id='contact'>";
	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>";
	text += "</div>";
	document.write(text);
}

function showNavBar(curPage) { showPageNav(curPage); }
function showPageNav(curPage)
{
 	//   name,           href               Img,           attributes
 	var pageinfo = [
 	   [ "Home",        "index.html",      "home",       "width=78 height=32 border=0" ],
 	   [ "Schedule",    "schedule.html",   "schedule",   "width=99 height=32 border=0" ],
 	   [ "Roster",      "roster.html",     "roster",     "width=83 height=32 border=0" ],
 	   [ "Photos",      "photo.html",      "photo",      "width=90 height=32 border=0" ],
 	   [ "Alumni",      "alumni.html",     "alumni",     "width=93 height=32 border=0" ],
 	   [ "Links",       "links.html",      "links",      "width=88 height=32 border=0" ],
 	   [ "Information", "information.html","info",       "width=65 height=32 border=0" ] 
	];

	var img = "";
	var text = "<div id='navbar'>";
	text += "<img src='images/nav_spacer.png' width=23 height=32 border=0 />"
	for( i=0; i<pageinfo.length; i++ ) {
		img = "images/" + pageinfo[i][2];
		if( curPage == pageinfo[i][0] ) { img += "page_currentpage.png"; } else { img += "page_link.png"; }
		text += "<a href='" + pageinfo[i][1] + "'>";
		text += "<img src='" + img + "'" 
		text += pageinfo[i][3] + " alt='" + pageinfo[i][0] + "Button' /></a>"
	}
	//text += "<img src='images/nav_spacer.png'       width=230 height=32 border=0  />"
	//text += "<img src='images/contactpage_link.png' width=86  height=32 border=0 alt='Contact Button' />"
	text += "<img src='images/navbar_line.png'      width=975 height=4  border=0 alt='Navigation Line' />"
	text += "</div>";
	document.write(text);
	showPageContact();
}


