function show_object_detail()
{
	
var about        = document.getElementById("about_this_object");
var details      = document.getElementById("object_details");
var about_href   = document.getElementById("about_href");
var details_href = document.getElementById("details_href");

if(about.style.display == "block")
{

about.style.display = "none";
details.style.display = "block";

about_href.style.color = "#666";
details_href.style.color = "#ccc";

} else if(about.style.display == "none") {

about.style.display = "block";
details.style.display = "none";

about_href.style.color = "#ccc";
details_href.style.color = "#666";

}

}

function home()
{
Effect.Appear('homeimage', { duration: 2.0 });
}

startList = function() {
	
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		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", "");
				}
			}
		}
	}
	if(document.getElementById('homeimage'))
	{
		home();
	}
}

window.onload=startList;