  //JavaScript Simple Image Rollover Code
  //copyright daxassist, 2000-2004
  //visit http://www.daxassist.com for this and other javascripts with full tutorials.

  if(document.images) {
    pics = new Array();
    pics[1] = new Image();
    pics[1].src = "/inc/templates/current/legaltypist/images/home.gif";
    pics[2] = new Image();
    pics[2].src = "/inc/templates/current/legaltypist/images/home_ovr.gif";

    pics[3] = new Image();
    pics[3].src = "/inc/templates/current/legaltypist/images/whoweare.gif";
    pics[4] = new Image();
    pics[4].src = "/inc/templates/current/legaltypist/images/whoweare_ovr.gif";

    pics[5] = new Image();
    pics[5].src = "/inc/templates/current/legaltypist/images/whatwedo.gif";
    pics[6] = new Image();
    pics[6].src = "/inc/templates/current/legaltypist/images/whatwedo_ovr.gif";

    pics[7] = new Image();
    pics[7].src = "/inc/templates/current/legaltypist/images/howwedoit.gif";
    pics[8] = new Image();
    pics[8].src = "/inc/templates/current/legaltypist/images/howwedoit_ovr.gif";

    pics[9] = new Image();
    pics[9].src = "/inc/templates/current/legaltypist/images/ourcustomers.gif";
    pics[10] = new Image();
    pics[10].src = "/inc/templates/current/legaltypist/images/ourcustomers_ovr.gif";
  }
    function changer(from,to) {
    if(document.images) {
    document.images[from].src = pics[to].src;
    }
  }