// JavaScript Document
// Created: August 19th, 2008
// This is a base library that should be included on all sites that use JavaScript and the DOM
// It should be the first .js file linked to in an (X)HTML document


//This function allows the addition of any number of event handlers to the window.onload event
function addLoadEvent(func) 
{
	var oldonload = window.onload;
	if (typeof window.onload != 'function')
	{
		window.onload = func;
	}
	else
	{
		window.onload = function() {
			oldonload();
			func();
		}
	}
}