// IE Update fix on all object & embed media
function ieUpdate()
{
	theObjects = document.getElementsByTagName("object");
	for (var i = 0; i < theObjects.length; i++)
	{
		theObjects[i].outerHTML = theObjects[i].outerHTML;
	}
}

function statusstart()
{
	self.status = "Welcome to HeatherSays&trade;.com!";
}

// Initialize all functions
function initialize()
{
	loadClock();
	ieUpdate();
	statusstart();
}

// Calls initialize when page loads
window.onload = function() {initialize();}