function popLanguages()
{
	/*
	here will be the stuff that fills the language dropdown in
	*/
}

function goLanguage()
{
	/*
	this bit will send the user to the version of the site in the language they selected
	but for now it'll just go to home.html
	*/
	
	//document.location="home.html";
}



function trace(str) {
  var tW = window.traceWindow;
  if (tW==null) tW = window.open("", "traceWindow", "status=0, location=0, toolbar=0, width=500, height=500, scrollbars=1");
  tW.document.write(((typeof(str)=="string")?str.replace("\n", "<br />"):str )+ "<br />"); 
  tW.focus();
}





startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		if(!navRoot)
		{
			return;
		}
		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", "");
				}
			}
		}
	}
}

window.onload=startList;