window.onload = initAll;

function initAll()
{
	copyrightDate();
	
	document.getElementById("mod").innerHTML = document.getElementById("mod").innerHTML + (document.lastModified);
	
	// anything else you want to do
}


// Use javaScript to display the date of the copyright
// must put <span id="copyright"></span> in the footer for the date to be posted

function copyrightDate()
{
	document.getElementById("copyright").innerHTML = "&copy;2011 ORV Watch Kern County";
}
