<!-- 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 11/7/2002    #
// #                                                                              #
// # 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 untitled_preloadFlag = false;                   // Variable that is used only to make sure all the images for the animation are preloaded
var untitled_shot_number = "1";                     // First image in the animation
var untitled_total_frames = "16";                   // Total number of images in animation
var untitled_spinning = "YES";                      // Whether or not the image is to spin when the page loads
var untitled_spin_direction = "RIGHT";              // What direction the image is to spin when the page loads
var untitled_spin_speed = "200";                    // The speed at which the animation is to run. Lower numbers equal faster playback
var untitled_spin_object = "untitled_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 untitled_Preload_Images() {
	if (document.images) {
		untitled_frame1 = new Image;
		untitled_frame1.src = "untitled_frame01.jpg";
		untitled_frame2 = new Image;
		untitled_frame2.src = "untitled_frame02.jpg";
		untitled_frame3 = new Image;
		untitled_frame3.src = "untitled_frame03.jpg";
		untitled_frame4 = new Image;
		untitled_frame4.src = "untitled_frame04.jpg";
		untitled_frame5 = new Image;
		untitled_frame5.src = "untitled_frame05.jpg";
		untitled_frame6 = new Image;
		untitled_frame6.src = "untitled_frame06.jpg";
		untitled_frame7 = new Image;
		untitled_frame7.src = "untitled_frame07.jpg";
		untitled_frame8 = new Image;
		untitled_frame8.src = "untitled_frame08.jpg";
		untitled_frame9 = new Image;
		untitled_frame9.src = "untitled_frame09.jpg";
		untitled_frame10 = new Image;
		untitled_frame10.src = "untitled_frame10.jpg";
		untitled_frame11 = new Image;
		untitled_frame11.src = "untitled_frame11.jpg";
		untitled_frame12 = new Image;
		untitled_frame12.src = "untitled_frame12.jpg";
		untitled_frame13 = new Image;
		untitled_frame13.src = "untitled_frame13.jpg";
		untitled_frame14 = new Image;
		untitled_frame14.src = "untitled_frame14.jpg";
		untitled_frame15 = new Image;
		untitled_frame15.src = "untitled_frame15.jpg";
		untitled_frame16 = new Image;
		untitled_frame16.src = "untitled_frame16.jpg";
		untitled_preloadFlag = true;
	}
}

// Function that handles the rollovers when you mouse over a button
function untitled_Rollover(untitled_imgDocID,untitled_imgNumber) {
	untitled_shot_number = untitled_imgNumber;
	untitled_spinning = "NO";
	document.images[untitled_imgDocID].src = eval("untitled_frame" + untitled_shot_number + ".src");
}

// Function that handles the Auto-Spin
function untitled_Auto_Spin(untitled_imgDocID,untitled_imgObjName) {
	if (untitled_spinning == "YES") {
		if (untitled_spin_direction == "RIGHT") {
			document.images[untitled_imgDocID].src = eval(untitled_imgObjName + untitled_shot_number + ".src");
			if (untitled_shot_number == untitled_total_frames) {
				untitled_shot_number = "1";
			} else {
				untitled_shot_number = eval(untitled_shot_number + " + 1");
			}
			setTimeout("untitled_Auto_Spin(untitled_spin_object,'untitled_frame');",untitled_spin_speed);
		} else {
			document.images[untitled_imgDocID].src = eval(untitled_imgObjName + untitled_shot_number + ".src");
			if (untitled_shot_number == "1") {
				untitled_shot_number = untitled_total_frames;
			} else {
				untitled_shot_number = eval(untitled_shot_number + " - 1");
			}
			setTimeout("untitled_Auto_Spin(untitled_spin_object,'untitled_frame');",untitled_spin_speed);
		}
	}
}

document.write('');
document.write('<MAP NAME="untitled_VR">');
document.write('<AREA SHAPE="rect" COORDS="0,0,19,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',1); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="20,0,39,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',2); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="40,0,59,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',3); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="60,0,79,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',4); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="80,0,99,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',5); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="100,0,119,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',6); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="120,0,139,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',7); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="140,0,159,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',8); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="160,0,179,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',9); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="180,0,199,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',10); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="200,0,219,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',11); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="220,0,239,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',12); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="240,0,259,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',13); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="260,0,279,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',14); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="280,0,299,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',15); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="300,0,319,240" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',16); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');
document.write('</MAP>');

// STOP HIDING FROM OTHER BROWSERS -->
