<!--
//******************************************************************************
//*                             COPYRIGHT NOTICE                               *
//******************************************************************************
//* Copyright 2000 - 2004, DaxAssist.  All Rights Reserved.                    *
//* Visit http://www.daxassist.com for this and more scripts along with full   *
//* tutorials.                                                                 *
//*                                                                            *
//* ------------------------------                                             *
//* SCRIPT FOR DISJOINTED IMAGEMAP                                             *
//* ------------------------------                                             *
//* This script may be used and modified free of charge by anyone so long as   *
//* this entire copyright notice remains intact.  By using this script, you    *
//* to indemnify DaxAssist from any liability that might arise from its use.   *  
//*                                                                            *
//* FREE distribution of this script [copyright notice MUST be included] is    *
//* permitted. Selling of this or any other script held under copyright by     *
//* DaxAssist is strictly forbidden WITH NO EXCEPTIONS.                        *
//******************************************************************************

	if(document.images) {
		pics = new Array();	
  	pics[01] = new Image();
		pics[01].src = "grfx/atlanta1.jpg";
		pics[02] = new Image();
		pics[02].src = "grfx/dallas.jpg";
		pics[03] = new Image();
		pics[03].src = "grfx/sandiego.jpg";
		pics[04] = new Image();
		pics[04].src = "grfx/italy.jpg";
	}
 	function changer(from,to) {
    if(document.images) {
      document.images[from].src = pics[to].src;
    }
  }
// -->