<!--
	
	function addLoadEvent(func) {
		var oldonload = window.onload;
		if (typeof window.onload != 'function') {
			window.onload = func;
		} else {
			window.onload = function() {
				oldonload();
				func();
			}
		}
	}
	
	function adjustModule() {
		if (!document.getElementById("maincontenttable")) return false;
		if (document.getElementById("maincontentsubcell")) return false;
		
		mainContent = document.getElementById("maincontenttable");
		mainContent.className = "module";
		
	}
	
	function incLogoClick() {
   if (!document.getElementsByTagName) return false;
   if (!document.getElementById) return false;
   if (!document.getElementById("maincontentcell")) return false;
   
   var str = '<div id="logo-click">';
      str += '<h1><a href="http://www.iacp.com/">International Association of Culinary Professionals</a></h1>';
      str += '</div>';
   
   document.write(str);
}
	
//-->


