
//******************************************************************************
//
// Copyright 1998-2002 by Kuru
// All Rights Reserved
// http://www.kuru.com
//
// This program may not be redistributed, in any form, without our consent.
// It may not be archived or otherwise stored in any form.  All you can
// do with it is load it into your browser.
//
// We assert copyright over every last bit of text, program, and image
// here.  Read:
//	http://www.kuru.com/copyright.html
// for a longer assertion of our copyright and an explanation of the
// rights we assert.
//
//
// You are reading a file which has been modified to speed up loading.
// This process has rendered it largely unreadable by humans.
//
//******************************************************************************

 function rollover_multiple_activate( handle, image_to_activate) { if(document.images != null && rollover_info[handle].image_name != null && rollover_info[handle].images[image_to_activate] != null) { document[rollover_info[handle].image_name].src = rollover_info[handle].images[image_to_activate]; } } function rollover_multiple_deactivate( handle) { if(document.images != null && rollover_info[handle].image_name != null && rollover_info[handle].image_default != null) { document[rollover_info[handle].image_name].src = rollover_info[handle].image_default; } } function rollover_multiple_create( image_name, image_default, image_mapping) { var url_image; var arg_num; var handle; handle = rollover_info.length; rollover_info[handle] = new Object; rollover_info[handle].image_default = "http://" + site_address + "/" + image_default; if(document.images != null) { image_preload(rollover_info[handle].image_default); } rollover_info[handle].image_name = image_name; rollover_info[handle].images = new Array; if((image_mapping.length % 2) != 0) { alert( "function rollover_multiple_create() passed odd-sized array."); image_mapping.pop(); } for(arg_num = 0; arg_num < image_mapping.length; arg_num += 2) { url_image = "http://" + site_address + "/" + image_mapping[arg_num + 1]; rollover_info[handle].images[image_mapping[arg_num]] = url_image; if(document.images != null) { image_preload(url_image); } } return(handle); } var rollover_info = new Array; rollover_info[0] = null; 
