// use this if multiple functions need to be loaded and run onload

window.onload = initialize;

function initialize()
	{
	var currentTime = new Date();
	var year = currentTime.getFullYear();
	copyrightText = "2007 - "+ year;
    document.getElementById("copyright").innerHTML = copyrightText;
	}
