// JavaScript Document

startList = function() {
//alert(screen.availWidth);
//alert(document.body.clientWidth);

try{
document.getElementById("MenuLeft").style.left=((document.body.clientWidth-1000)/2)+14
} catch (e)
{
}

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";
this.top=10
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;
/*
function message() {
  //alert(document.body.clientWidth);
  if (parseInt(navigator.appVersion)>3) {
 if (navigator.appName=="Netscape") {
  winW = window.innerWidth;
  winH = window.innerHeight;
 }
 if (navigator.appName.indexOf("Microsoft")!=-1) {
  winW = document.body.offsetWidth;
  winH = document.body.offsetHeight;
 }
  alert(document.body.offsetWidth);
  //document.getElementById("MenuLeft").style.left=((document.body.clientWidth)+72
}
*/
