function writeOneEpisodeLink(desturl, eptitle, areyouhere) {
	document.write("\t<li class='episode-link'>" +
		( (areyouhere) ? "<span class='episode-link-youarehere'>" : "") + 
		"<a href='" + desturl + "'>" + eptitle + "</a>" + 
		( (areyouhere) ? "</span>" : "") + "</li>\n");
	return true;
}

function writeEpisodeLinks(youarehere) {
	document.write("<div class='episode-list'><ul class='episode-list'>\n");
	document.write("<li class='episode-link-head'><a href='./episodes/index.html'>Episode List</a></li>\n");
	writeOneEpisodeLink("./episodes/F01/index.html", "F01. Little Red Riding Hood", (youarehere == 1) );
	writeOneEpisodeLink("./episodes/F02/index.html", "F02. Invasion of the Animal People", (youarehere == 2) );
	writeOneEpisodeLink("./episodes/F03/index.html", "F03. Starcrash", (youarehere == 3) );
	writeOneEpisodeLink("./episodes/F04/index.html", "F04. Eliminators", (youarehere == 4) );
	writeOneEpisodeLink("./episodes/candidates.html", "Episode Candidates", (youarehere == 99) );
	document.write("</ul></div>\n");
	return true;
}


