// JavaScript Document

var activelink;

function InitMP3page()
{

	activelink = document.getElementById("gracelink");

    document.getElementById("story").src="http://www.storyinliteraryfiction.com/grace.html";
    document.getElementById("gracelink").style.color="mediumblue";
}



function SetIFrame(filename) 
{
	activelink.style.color="#7a2b1a";	
	
	document.getElementById("story").src=filename;
	if (filename == "grace.html")
		activelink = document.getElementById("gracelink");
	else if (filename == "reddog.html")
		activelink = document.getElementById("reddoglink");
	else if (filename == "withers.html")
		activelink = document.getElementById("witherslink");
	else if (filename == "crossing.html")
		activelink = document.getElementById("crossinglink");
	else if (filename == "stonecutter.html")
		activelink = document.getElementById("stonecutterlink");


	activelink.style.color="mediumblue";
}

