var onloadFunctions = new Array();

window.onload = function () {
	for (var i = 0; i < onloadFunctions.length; i++) {
		onloadFunctions[i]();
	}
}
