setTimeout("PageLoad()",100);

function PageLoad()
{
	var code = "<a href='default.asp'><div id='Headings'></div></a>";
	document.getElementById('Heading').innerHTML = code
	//document.getElementsByClassName('Heading').innerHTML = code;
	 //alert("test");
}



function showMenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible";
}
function hideMenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden";
}
//Function parttwo will change the html with the ID of text and insert <div id="text"><a onclick="partone()">Click Here For Part 2 into that ID.  What that is doing is changing the text underneath the fader and making it call the function partone the next time it's clicked. The next line just switches the fader between part1 and part2
//function parttwo()
//{
//	document.getElementById("text").innerHTML ='<div id="text"><a onclick="partone()">Click Here For Part 2</a>';
//	document.getElementById("fader").src = "Home/Home/Faders/graduation2011/part1.gif";
//}
//function partone()
//{
//	document.getElementById("text").innerHTML ='<div id="text"><a onclick="parttwo()">Click Here For Part 1</a>';
//	document.getElementById("fader").src = "Home/Home/Faders/graduation2011/part2.gif";
//}




