var RDGonloader = new function() {
	this.functions = new Array();

	this.add = function(func) {
		RDGonloader.functions.push(func);
	};
	
	this.init = function() {
		for(var i in RDGonloader.functions) {
			eval(RDGonloader.functions[i]);
		}
	};
}
window.onload = RDGonloader.init;
