function writeNavItem(desturl, imagesrc, alttext, width, height) {
	document.write("<a href='" + desturl + "'>" +
		"<img src='./img/nav/" + imagesrc + ".jpg' " +
		"height='" + height + "' width='" + width + "' " +
		"alt='" + alttext + "' /></a>");
	return true;
}

function writeLeftNav() {
	document.write("<div id='mid-leftnav'>");
	writeNavItem("./news/index.html", "B_CurNews", "Current News", 172, 41);
	writeNavItem("./episodes/index.html", "B_EpList", "Episode List", 172, 41);
	writeNavItem("./photos/index.html", "B_Photos", "Photo Scrapbook", 172, 41);
	writeNavItem("./about/index.html", "B_FAQ", "Our FAQ", 172, 41);
	writeNavItem("./about/meetfans.html", "B_MeetFans", "Meet the Fans", 172, 41);
	writeNavItem("./about/mstlinks.html", "B_MST3K", "MST3K Links", 172, 41);
	writeNavItem("./about/copyright.html", "ButtonTail", "Copyright", 32, 33);
	document.write("</div>\n");
	return true;
}

writeLeftNav();

