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

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