  //JavaScript Disjointed 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[01] = new Image();
    pics[01].src = "images/central/central-main.jpg";
	
    pics[02] = new Image();
    pics[02].src = "images/central/central-room01_th.jpg";
    pics[03] = new Image();
    pics[03].src = "images/central/central-room01_th.jpg";
    pics[04] = new Image();
    pics[04].src = "images/central/central-room01.jpg";
	
    pics[05] = new Image();
    pics[05].src = "images/central/central-side_th.jpg";
    pics[06] = new Image();
    pics[06].src = "images/central/central-side_th.jpg";
    pics[07] = new Image();
    pics[07].src = "images/central/central-side.jpg";
	
    pics[08] = new Image();
    pics[08].src = "images/central/central-room02_th.jpg";
    pics[09] = new Image();
    pics[09].src = "images/central/central-room02_th.jpg";
    pics[10] = new Image();
    pics[10].src = "images/central/central-room02.jpg";
	
	
  }
    function changer2(from,to,from1,to1) {
    if(document.images) {
    document.images[from].src = pics[to].src;
    document.images[from1].src = pics[to1].src;
    }
  }
