document.observe("dom:loaded", init);

var initFunctions = new Array();

function init() {
	for(var i=0;i<initFunctions.length;i++)
		initFunctions[i].call(this);
}