// JavaScript Document

  //JavaScript Disjointed Image Rollover Code
  //copyright daxassist, 2000-2008
  //visit http://www.daxassist.com for this and other javascripts with full tutorials.

  if(document.images) {
pics = new Array();
pics[01] = new Image();
pics[01].src = "images/clear.jpg";
pics[02] = new Image();
pics[02].src = "images/seasons_r1_c2_off.jpg";
pics[03] = new Image();
pics[03].src = "images/seasons_r1_c2_on.jpg";
pics[04] = new Image();
pics[04].src = "images/summer.jpg";
pics[05] = new Image();
pics[05].src = "images/seasons_r1_c3_off.jpg";
pics[06] = new Image();
pics[06].src = "images/seasons_r1_c3_on.jpg";
pics[07] = new Image();
pics[07].src = "images/autumn.jpg"; 
pics[08] = new Image();
pics[08].src = "images/seasons_r1_c4_off.jpg";
pics[09] = new Image();
pics[09].src = "images/seasons_r1_c4_on.jpg";
pics[10] = new Image();
pics[10].src = "images/winter.jpg"; 
pics[11] = new Image();
pics[11].src = "images/seasons_r1_c5_off.jpg";
pics[12] = new Image();
pics[12].src = "images/seasons_r1_c5_on.jpg";
pics[13] = new Image();
pics[13].src = "images/spring.jpg"; 
}
    function changer2(from,to,from1,to1) {
    if(document.images) {
    document.images[from].src = pics[to].src;
    document.images[from1].src = pics[to1].src;
    }
  }
