<!-- HIDE FROM OTHER BROWSERS
//##############################################################################
// # © Copyright 2000 Autolycus Corp.  All Rights Reserved  Patents Pending    #
// # JavaScript Object VR Rollover Method              Version 1.4             #
// # info@autolycus.com                                Created 11/3/1999       #
// # http://www.autolycus.com                          Last Modified 7/24/2001 #
// #                                                                           #
// # This code is protected by US and international law including copyright.   #
// # Any illegal copying, modificaton or theft is prohibited and is punishable #
// # by law. For further information, please contact Autolycus Corporation at  #
// # info@autolycus.com or 717.761.9080.                                       #
//##############################################################################

// Declare variables
var dolphin_preloadFlag = false;          // Variable that is used only to make sure all the images for the animation are preloaded
var dolphin_shot_number = "1";            // First image in the animation
var dolphin_total_frames = "16";          // Total number of images in animation
var dolphin_spinning = "YES";             // Whether or not the image is to spin when the page loads
var dolphin_spin_direction = "RIGHT";     // What direction the image is to spin when the page loads
var dolphin_spin_speed = "400";           // The speed at which the animation is to run. Lower numbers equal faster playback
var dolphin_spin_object = "dolphin_STech";        // The object or image space that will be used for the animation playback

// Function to preload the VR images and assign them to predefined variables
function dolphin_Preload_Images() {
	if (document.images) {
		dolphin_frame1 = new Image;
		dolphin_frame1.src = "js/dolphin_frame01.jpg";
		dolphin_frame2 = new Image;
		dolphin_frame2.src = "js/dolphin_frame02.jpg";
		dolphin_frame3 = new Image;
		dolphin_frame3.src = "js/dolphin_frame03.jpg";
		dolphin_frame4 = new Image;
		dolphin_frame4.src = "js/dolphin_frame04.jpg";
		dolphin_frame5 = new Image;
		dolphin_frame5.src = "js/dolphin_frame05.jpg";
		dolphin_frame6 = new Image;
		dolphin_frame6.src = "js/dolphin_frame06.jpg";
		dolphin_frame7 = new Image;
		dolphin_frame7.src = "js/dolphin_frame07.jpg";
		dolphin_frame8 = new Image;
		dolphin_frame8.src = "js/dolphin_frame08.jpg";
		dolphin_frame9 = new Image;
		dolphin_frame9.src = "js/dolphin_frame09.jpg";
		dolphin_frame10 = new Image;
		dolphin_frame10.src = "js/dolphin_frame10.jpg";
		dolphin_frame11 = new Image;
		dolphin_frame11.src = "js/dolphin_frame11.jpg";
		dolphin_frame12 = new Image;
		dolphin_frame12.src = "js/dolphin_frame12.jpg";
		dolphin_frame13 = new Image;
		dolphin_frame13.src = "js/dolphin_frame13.jpg";
		dolphin_frame14 = new Image;
		dolphin_frame14.src = "js/dolphin_frame14.jpg";
		dolphin_frame15 = new Image;
		dolphin_frame15.src = "js/dolphin_frame15.jpg";
		dolphin_frame16 = new Image;
		dolphin_frame16.src = "js/dolphin_frame16.jpg";
		dolphin_preloadFlag = true;
	}
}

// Function that handles the rollovers when you mouse over a button
function dolphin_Rollover(dolphin_imgDocID,dolphin_imgNumber) {
	dolphin_shot_number = dolphin_imgNumber;
	dolphin_spinning = "NO";
	document.images[dolphin_imgDocID].src = eval("dolphin_frame" + dolphin_shot_number + ".src");
}

// Function that handles the Auto-Spin
function dolphin_Auto_Spin(dolphin_imgDocID,dolphin_imgObjName) {
	if (dolphin_spinning == "YES") {
		if (dolphin_spin_direction == "RIGHT") {
			document.images[dolphin_imgDocID].src = eval(dolphin_imgObjName + dolphin_shot_number + ".src");
			if (dolphin_shot_number == dolphin_total_frames) {
				dolphin_shot_number = "1";
			} else {
				dolphin_shot_number = eval(dolphin_shot_number + " + 1");
			}
			setTimeout("dolphin_Auto_Spin(dolphin_spin_object,'dolphin_frame');",dolphin_spin_speed);
		} else {
			document.images[dolphin_imgDocID].src = eval(dolphin_imgObjName + dolphin_shot_number + ".src");
			if (dolphin_shot_number == "1") {
				dolphin_shot_number = dolphin_total_frames;
			} else {
				dolphin_shot_number = eval(dolphin_shot_number + " - 1");
			}
			setTimeout("dolphin_Auto_Spin(dolphin_spin_object,'dolphin_frame');",dolphin_spin_speed);
		}
	}
}

document.write('');
document.write('<MAP NAME="dolphin_VR">');
document.write('<AREA SHAPE="rect" COORDS="0,0,19,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'1\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="20,0,39,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'2\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="40,0,59,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'3\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="60,0,79,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'4\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="80,0,99,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'5\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="100,0,119,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'6\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="120,0,139,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'7\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="140,0,159,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'8\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="160,0,179,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'9\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="180,0,199,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'10\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="200,0,219,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'11\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="220,0,239,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'12\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="240,0,259,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'13\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="260,0,279,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'14\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="280,0,299,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'15\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="300,0,319,240" HREF="#" ONMOUSEOVER="dolphin_Rollover(\'dolphin_STech\',\'16\'); window.status=\'\'; return true;" ONFOCUS="dolphin_STech.blur(); return true;">');
document.write('</MAP>');

// STOP HIDING FROM OTHER BROWSERS -->
