function toggleSwitch()
{
	var imgFileArray = document.images.dayNight.src.split("/");
	var imgFile = imgFileArray[imgFileArray.length-1];

	var newFile = (imgFile.indexOf("night")>= 0) ? "images/toilet-day.gif" : "images/toilet-night.gif";
	document.images.dayNight.src = newFile;
}

function topImage()
{
	var topImage01 = document.getElementById("top-middle");
	var topImages = new Array("top-jonnyglow.gif","quote-01.gif");

	var strLocation = window.location.toString();
	var strFolders = strLocation.split("/");
	var strFolder = strFolders[strFolders.length-2]

	if(strFolder=="about")
	{
		topImage01.src = "images/" + topImages[1];
	}
	else
	{
		topImage01.src = "images/" + topImages[0];
	}
}