<!--
	
	function addLoadEvent(func) {
		var oldonload = window.onload;
		if (typeof window.onload != 'function') {
			window.onload = func;
		} else {
			window.onload = function() {
				oldonload();
				func();
			}
		}
	}
	
	function findModule() {
		// Applied if there is no sub-content present. See modules.
		if (!document.getElementsByTagName) return false;
		if (!document.getElementById) return false;
		if (!document.getElementById("navtop2")) return false;
		if (!document.getElementById("maincontenttable")) return false;
		if (document.getElementById("maincontentsubtable")) return false;
		
		var adjustContent = document.getElementById("maincontenttable");
			adjustContent.className = "module";
	}
	
	addLoadEvent(findModule);
	
-->
