//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 = "http://www.condorbreaks.com/images/abbeycourt/abbey-court-main.jpg";
	
    pics[02] = new Image();
    pics[02].src = "http://www.condorbreaks.com/images/abbeycourt/abbey-court-dining_th.jpg";
    pics[03] = new Image();
    pics[03].src = "http://www.condorbreaks.com/images/abbeycourt/abbey-court-dining_th.jpg";
    pics[04] = new Image();
    pics[04].src = "http://www.condorbreaks.com/images/abbeycourt/abbey-court-dining.jpg";
	
    pics[05] = new Image();
    pics[05].src = "http://www.condorbreaks.com/images/abbeycourt/abbey-court-patio_th.jpg";
    pics[06] = new Image();
    pics[06].src = "http://www.condorbreaks.com/images/abbeycourt/abbey-court-patio_th.jpg";
    pics[07] = new Image();
    pics[07].src = "http://www.condorbreaks.com/images/abbeycourt/abbey-court-patio.jpg";
	
    pics[08] = new Image();
    pics[08].src = "http://www.condorbreaks.com/images/abbeycourt/abbey-court-exterior02_th.jpg";
    pics[09] = new Image();
    pics[09].src = "http://www.condorbreaks.com/images/abbeycourt/abbey-court-exterior02_th.jpg";
    pics[10] = new Image();
    pics[10].src = "http://www.condorbreaks.com/images/abbeycourt/abbey-court-exterior02.jpg";
	
  }
    function changer2(from,to,from1,to1) {
    if(document.images) {
    document.images[from].src = pics[to].src;
    document.images[from1].src = pics[to1].src;
    }
  }
