<!--
//******************************************************************************
//*                             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 ROLLOVER                                             *
//* ------------------------------                                             *
//* 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 = "/images/clear.gif";
		pics[02] = new Image();
		pics[02].src = "/images/rolloverbutton1off.gif";
		pics[03] = new Image();
		pics[03].src = "/images/rolloverbutton1on.gif";
		pics[04] = new Image();
		pics[04].src = "/images/jadelogo[onwhite].gif";
		pics[05] = new Image();
		pics[05].src = "/images/rolloverbutton2off.gif";
		pics[06] = new Image();
		pics[06].src = "/images/rolloverbutton2on.gif";
		pics[07] = new Image();
		pics[07].src = "/images/roselogo[onwhite].gif";
	}
 	function changer2(from,to,from1,to1) {
    if(document.images) {
      document.images[from].src = pics[to].src;
     	document.images[from1].src = pics[to1].src;
    }
  }
// -->