function include(sJsFile) {
	document.writeln('<script src="' + (typeof(siteRoot) != 'undefined' ? siteRoot : '') + sJsFile + '"></script>');
}
function includes() {
	for(var iInc = 0; iInc < arguments.length; iInc++) {
		include(arguments[iInc]);
	}
}

function includeCss(sCssFile) {
	document.writeln('<link href="' + (typeof(siteRoot) != 'undefined' ? siteRoot : '') + sCssFile + '" rel="stylesheet" />');
}

includes(
	'/js/common/js/array.js',
	'/js/common/js/string.js',

	'/js/common/onload.js',
	'/js/common/countlog.js',

	'/js/common/css/cssclasslist.js',

	'/js/common/dom/attribute.js',
	'/js/common/dom/pseudoclass.js',
	'/js/common/dom/simpleselector.js',
	'/js/common/dom/selector.js',
	'/js/common/dom/tag.js',

	'/js/common/event/events.js',
	'/js/common/event/event.js',
	'/js/common/event/binding.js'
);