	// ***********************************************************************************************
	// *                            initialize all div layers as objects                             *
	// ***********************************************************************************************
	// *                    usage: put this at the end of the body before </BODY>                    *
	// ***********************************************************************************************

	if (browser.name == "IE") documentObj = document.all.tags('div');
	if (browser.mainInfo == "NS5") documentObj = document.getElementsByTagName('div');
	if (browser.mainInfo == "NS4") documentObj = document.layers;
	for (i=0;i<documentObj.length;i++) {
		if ((documentObj[i].id != "") && (documentObj[i].id + "" != "undefined")) 
			eval("var " + documentObj[i].id + " = new LayerObject('" + documentObj[i].id  + "');");
	}		
	
	documentLoaded = true;