<!--
  //Multiple Disjointed Rollover Code
  //copyright © 2000 - 2003, Dax Assist
  //slightly modified for use by ASA
  //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 = "/images/index_02_01.gif";
    pics[2] = new Image();
    pics[2].src = "/images/index_02_02.gif";
    pics[3] = new Image();
    pics[3].src = "/images/index_02_01a.gif";
    pics[4] = new Image();
    pics[4].src = "/images/index_02_03.gif";
    pics[5] = new Image();
    pics[5].src = "/images/index_02_01b.gif";
    pics[6] = new Image();
    pics[6].src = "/images/index_02_04.gif";
    pics[7] = new Image();
    pics[7].src = "/images/index_02_01c.gif";
    pics[8] = new Image();
    pics[8].src = "/images/index_02_05.gif";
    pics[9] = new Image();
    pics[9].src = "/images/index_02_01d.gif";
  }
    function changer2(from,to) {
    if(document.images) {
    document.images[from].src = pics[to].src;
   }
  }
  //-->