<!--
	
	function addLoadEvent(func) {
		var oldonload = window.onload;
		if (typeof window.onload != 'function') {
			window.onload = func;
		} else {
			window.onload = function() {
				oldonload();
				func();
			}
		}
	}
	
	function findLNav() {
		if (!document.getElementsByTagName) return false;
		if (!document.getElementById) return false;
		if (document.getElementById("navleft")) return false;
		if (!document.getElementById("maincontentcell")) return false;
		
		mainContent = document.getElementById("maincontentcell");
		footerCell = document.getElementById("footertablecell");
		
		mainContent.setAttribute("style", "background-image: url(/images/assnimg974/imgs/bak_maincontentcell-module.png); padding-top: 22px;");
		footerCell.setAttribute("style", "background-image: url(/images/assnimg974/imgs/bak_footertable-module.png);");
	}
	
	function incLogin() {
		if (!document.getElementsByTagName) return false;
		if (!document.getElementById) return false;
		if (!document.getElementById("navleft")) return false;
		
		document.write('<iframe id="iflogin" src="/cafe.cfm?act=member.showlogin&spanid=loginform" frameborder="0" width="0" height="0"></iframe><span id="loginform">&nbsp;</span>');
	}
	
	addLoadEvent(findLNav);
	incLogin();
	
-->