// JavaScript Document

function onLoadPage() 
{
	setNav();
	if (typeof ImageBook == "function" && typeof BookImages == "function") {
		ImageBook();
		setTimeout ( BookImages, 2000)
		}
}

function setNav()
{
	var node = document.getElementById("tab_" + tabs[0]);
	if (node)
	{
    	node.setAttribute("class", "selected");
    	node.className = "selected"; // IE?
	}
	if (tabs[1])
	{
		var node = document.getElementById("tab_" + tabs[0] + "_" + tabs[1]);
		if (node)
		{
			node.setAttribute("class", "selected");
    		node.className = "selected"; // IE?
		}
		document.getElementById("mainContent").style.marginTop="25px";//move it down to accomodate the 2nd menu
	}

}

function doDeveloperLogin()
{
	document.location = "/solutions/ldds/developers.htm";
	}
