function start()
{
bannerObj1 = document.getElementsByTagName("table")[0];
bannerObj2 = document.getElementsByTagName("table")[2];
myBannerDiv = document.getElementById("bannerDiv");
myBannerDiv.appendChild(bannerObj1);
myBannerDiv.appendChild(bannerObj2);
}

function startList()
{
if (document.all)
	{
	navRoot = document.getElementById("mainMenu");
	for (i=0; i<navRoot.childNodes.length; i++)
		{
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI")
			{
			node.onmouseover=function()
				{
				this.className += " over";
				}
			node.onmouseout=function()
				{
				this.className = this.className.replace(" over", "");
				}
			}
		}
	}
}