// JavaScript Document
startList = function() {
      if (document.all&&document.getElementById) {
            navRoot = document.getElementById("menu");
            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;

if (document.images)
{
  pic1= new Image(); 
  pic1.src="images/menu_contact_over.gif";
  
  pic2= new Image(); 
  pic2.src="images/menu_criminal_over.gif";
  
  pic3= new Image(); 
  pic3.src="images/menu_faq_over.gif"; 
  
  pic4= new Image(); 
  pic4.src="images/menu_home_over.gif"; 

  pic5= new Image(); 
  pic5.src="images/menu_personal_over.gif"; 

  pic6= new Image(); 
  pic6.src="images/menu_real_over.gif"; 

  pic7= new Image(); 
  pic7.src="images/menu_wills_over.gif"; 

  pic8= new Image(); 
  pic8.src="images/menu_ap_over.gif"; 

}