<!-- 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 cop_preloadFlag = false;                   // Variable that is used only to make sure all the images for the animation are preloaded
var cop_shot_number = 1;                     // First image in the animation
var cop_total_frames = 16;                   // Total number of images in animation
var cop_spinning = "YES";                      // Whether or not the image is to spin when the page loads
var cop_spin_direction = "RIGHT";              // What direction the image is to spin when the page loads
var cop_spin_speed = "100";                    // The speed at which the animation is to run. Lower numbers equal faster playback
var cop_spin_object = "cop_STech";        // The object or image space that will be used for the animation playback

//Preload Images
if (document.images) {
	cop = new Array(16);
	cop[1] = new Image;
	cop[1].src = "cop_frame01.jpg";
	cop[2] = new Image;
	cop[2].src = "cop_frame02.jpg";
	cop[3] = new Image;
	cop[3].src = "cop_frame03.jpg";
	cop[4] = new Image;
	cop[4].src = "cop_frame04.jpg";
	cop[5] = new Image;
	cop[5].src = "cop_frame05.jpg";
	cop[6] = new Image;
	cop[6].src = "cop_frame06.jpg";
	cop[7] = new Image;
	cop[7].src = "cop_frame07.jpg";
	cop[8] = new Image;
	cop[8].src = "cop_frame08.jpg";
	cop[9] = new Image;
	cop[9].src = "cop_frame09.jpg";
	cop[10] = new Image;
	cop[10].src = "cop_frame10.jpg";
	cop[11] = new Image;
	cop[11].src = "cop_frame11.jpg";
	cop[12] = new Image;
	cop[12].src = "cop_frame12.jpg";
	cop[13] = new Image;
	cop[13].src = "cop_frame13.jpg";
	cop[14] = new Image;
	cop[14].src = "cop_frame14.jpg";
	cop[15] = new Image;
	cop[15].src = "cop_frame15.jpg";
	cop[16] = new Image;
	cop[16].src = "cop_frame16.jpg";
	cop_preloadFlag = true;
}

// Function that handles the rollovers when you mouse over a button
function cop_Rollover(cop_imgDocID,cop_imgNumber) {
	cop_shot_number = cop_imgNumber;
	cop_spinning = "NO";
	document.images[cop_imgDocID].src = cop[cop_shot_number].src;
}

// Function that handles the Auto-Spin
function cop_Auto_Spin(cop_imgDocID,cop_imgObjName) {
	if (cop_spinning == "YES") {
		if (cop_spin_direction == "RIGHT") {
			document.images[cop_imgDocID].src = cop[cop_shot_number].src;
			if (cop_shot_number == cop_total_frames) {
				cop_shot_number = 1;
			} else {
				cop_shot_number = cop_shot_number + 1;
			}
			setTimeout("cop_Auto_Spin(cop_spin_object,'cop_frame');",cop_spin_speed);
		} else {
			document.images[cop_imgDocID].src = cop[cop_shot_number].src;
			if (cop_shot_number == 1) {
				cop_shot_number = cop_total_frames;
			} else {
				cop_shot_number = cop_shot_number - 1;
			}
			setTimeout("cop_Auto_Spin(cop_spin_object,'cop_frame');",cop_spin_speed);
		}
	}
}

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

// STOP HIDING FROM OTHER BROWSERS -->

