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", "");
   }
   }
  }
 }
}
window.onload=startList;

function squirtFlash1()
{
document.write('<object type="application/x-shockwave-flash" data="c.swf?path=/img/ads/freetruck.swf" width="380" height="212">\n');
document.write('<param name="movie" value="c.swf?path=/img/ads/freetruck.swf"\>\n');
document.write('<param name="quality" value="high"\>\n');
document.write('<param name="bgcolor" value="#ffffff"\>\n');
document.write('<img src="/img/freetruck.swf.jpg" width="380" height="212" alt=""\></object>\n');
}

function toggleVisibility(sId){
  var me=document.getElementById(sId);
  if (me.style.visibility=="hidden"){
     me.style.visibility="visible";
  }
  else {
     me.style.visibility="hidden";
  }
}

function loadPage(pageURL){
  location.href = pageURL.options[pageURL.selectedIndex].value
}

