<!-- 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 n13_preloadFlag = false;                   // Variable that is used only to make sure all the images for the animation are preloadedvar n13_shot_number = 1;                     // First image in the animationvar n13_total_frames = 16;                   // Total number of images in animationvar n13_spinning = "YES";                      // Whether or not the image is to spin when the page loadsvar n13_spin_direction = "RIGHT";              // What direction the image is to spin when the page loadsvar n13_spin_speed = "200";                    // The speed at which the animation is to run. Lower numbers equal faster playbackvar n13_spin_object = "n13_STech";        // The object or image space that will be used for the animation playback//Preload Imagesif (document.images) {	n13 = new Array(16);	n13[1] = new Image;	n13[1].src = "n13_frame01.jpg";	n13[2] = new Image;	n13[2].src = "n13_frame02.jpg";	n13[3] = new Image;	n13[3].src = "n13_frame03.jpg";	n13[4] = new Image;	n13[4].src = "n13_frame04.jpg";	n13[5] = new Image;	n13[5].src = "n13_frame05.jpg";	n13[6] = new Image;	n13[6].src = "n13_frame06.jpg";	n13[7] = new Image;	n13[7].src = "n13_frame07.jpg";	n13[8] = new Image;	n13[8].src = "n13_frame08.jpg";	n13[9] = new Image;	n13[9].src = "n13_frame09.jpg";	n13[10] = new Image;	n13[10].src = "n13_frame10.jpg";	n13[11] = new Image;	n13[11].src = "n13_frame11.jpg";	n13[12] = new Image;	n13[12].src = "n13_frame12.jpg";	n13[13] = new Image;	n13[13].src = "n13_frame13.jpg";	n13[14] = new Image;	n13[14].src = "n13_frame14.jpg";	n13[15] = new Image;	n13[15].src = "n13_frame15.jpg";	n13[16] = new Image;	n13[16].src = "n13_frame16.jpg";	n13_preloadFlag = true;}// Function that handles the rollovers when you mouse over a buttonfunction n13_Rollover(n13_imgDocID,n13_imgNumber) {	n13_shot_number = n13_imgNumber;	n13_spinning = "NO";	document.images[n13_imgDocID].src = n13[n13_shot_number].src;}// Function that handles the Auto-Spinfunction n13_Auto_Spin(n13_imgDocID,n13_imgObjName) {	if (n13_spinning == "YES") {		if (n13_spin_direction == "RIGHT") {			document.images[n13_imgDocID].src = n13[n13_shot_number].src;			if (n13_shot_number == n13_total_frames) {				n13_shot_number = 1;			} else {				n13_shot_number = n13_shot_number + 1;			}			setTimeout("n13_Auto_Spin(n13_spin_object,'n13_frame');",n13_spin_speed);		} else {			document.images[n13_imgDocID].src = n13[n13_shot_number].src;			if (n13_shot_number == 1) {				n13_shot_number = n13_total_frames;			} else {				n13_shot_number = n13_shot_number - 1;			}			setTimeout("n13_Auto_Spin(n13_spin_object,'n13_frame');",n13_spin_speed);		}	}}document.write('');document.write('<MAP NAME="n13_VR">');document.write('<AREA SHAPE="rect" COORDS="0,0,19,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',1); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="20,0,39,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',2); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="40,0,59,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',3); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="60,0,79,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',4); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="80,0,99,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',5); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="100,0,119,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',6); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="120,0,139,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',7); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="140,0,159,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',8); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="160,0,179,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',9); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="180,0,199,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',10); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="200,0,219,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',11); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="220,0,239,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',12); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="240,0,259,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',13); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="260,0,279,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',14); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="280,0,299,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',15); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="300,0,319,240" HREF="#" ONMOUSEOVER="n13_Rollover(\'n13_STech\',16); window.status=\'\'; return true;" ONFOCUS="n13_STech.blur(); return true;">');document.write('</MAP>');// STOP HIDING FROM OTHER BROWSERS -->