// to ne customise per site
  //JavaScript Disjointed Imagemap 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/penthouse/holder.jpg";
    pics[02] = new Image();
    pics[02].src = "images/penthouse/kitchen.jpg";
    pics[03] = new Image();
    pics[03].src = "images/penthouse/dining01.jpg";
    pics[04] = new Image();
    pics[04].src = "images/penthouse/lounge02.jpg";
	pics[05] = new Image();
    pics[05].src = "images/penthouse/bedroom.jpg";
	pics[06] = new Image();
    pics[06].src = "images/penthouse/balcony.jpg";
	pics[07] = new Image();
    pics[07].src = "images/penthouse/lounge01.jpg";
	pics[08] = new Image();
    pics[08].src = "images/penthouse/bathroom.jpg";
  }
    function changer(from,to) {
    if(document.images) {
    document.images[from].src = pics[to].src;
    }
  }
