var __include_js = {

	items : new Array() ,
	
	write : function(src) {
		document.write('<script type="text/javascript" src="' + src + '"></script>');
	},
	
	bind : function() {
		
		for(var i=0;i<this.items.length;i++){
			this.write(this.items[i]);
		}
	},
	
	add : function(src) {
	
		src = (src || "").toLowerCase();
		
		var itemstring = ("," + this.items.join(",") + ",").toLowerCase();
		var hasitem = (itemstring.indexOf(src)>-1);
	
		if(!hasitem) this.write(src);
	}
	
}

__include_js.items.push("/webcommon/js/prototype/prototype.js");
__include_js.items.push("/webcommon/js/prototype/prototypeextention.js");
__include_js.items.push("/webcommon/js/util/calendar.js");
__include_js.items.push("/webcommon/js/util/util.file.js");
__include_js.items.push("/webcommon/js/common/common.js");
__include_js.items.push("/webcommon/js/base.js");
__include_js.items.push("/common/Js/design.js");

__include_js.bind();