// JavaScript Document

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", "");
   }
   }
  }
 }
 
   document.getElementById('header').innerHTML = '<a href="http://www.1800duilaws.com/"><img src="http://www.1800duilaws.com/_images/header.jpg" border="0" alt="DUI Defense" usemap="#FPMap0" /></a>' +
    '<map name="FPMap0" id="FPMap0">' +
    '<area shape="rect" coords="256,1,765,138" href="http://www.1800duilaws.com/common/freeconsultn.asp" alt="Free consultation with a DUI Attorney" />' +
   '<area shape="rect" coords="0,-5,257,150" href="http://www.1800duilaws.com" alt="1800duilaws - Home" /></map>';

}
window.onload=startList;// JavaScript Document
