<!--
//******************************************************************************
//*                             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 MULTIPLE IMAGE 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/rolloverbutton1off.gif";
		pics[02] = new Image();
		pics[02].src = "/images/rolloverbutton1on.gif";
		pics[03] = new Image();
		pics[03].src = "/images/rolloverbutton2off.gif";
		pics[04] = new Image();
		pics[04].src = "/images/rolloverbutton2on.gif";
		pics[05] = new Image();
		pics[05].src = "/images/rolloverbutton3off.gif";
		pics[06] = new Image();
		pics[06].src = "/images/rolloverbutton3on.gif";
		pics[07] = new Image();
		pics[07].src = "/images/rolloverbutton4off.gif";
		pics[08] = new Image();
		pics[08].src = "/images/rolloverbutton4on.gif";
		pics[09] = new Image();
		pics[09].src = "/images/rolloverbutton5off.gif";
		pics[10] = new Image();
		pics[10].src = "/images/rolloverbutton5on.gif";
		pics[11] = new Image();
		pics[11].src = "/images/rolloverbutton6off.gif";
		pics[12] = new Image();
		pics[12].src = "/images/rolloverbutton6on.gif";
	}
 	function changer(from,to) {
  	if(document.images) {
    	document.images[from].src = pics[to].src;
    }
  }
// -->