<!-- 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 HOUSE_GRINDER__ON_preloadFlag = false;                   // Variable that is used only to make sure all the images for the animation are preloadedvar HOUSE_GRINDER__ON_shot_number = "1";                     // First image in the animationvar HOUSE_GRINDER__ON_total_frames = "16";                   // Total number of images in animationvar HOUSE_GRINDER__ON_spinning = "YES";                      // Whether or not the image is to spin when the page loadsvar HOUSE_GRINDER__ON_spin_direction = "RIGHT";              // What direction the image is to spin when the page loadsvar HOUSE_GRINDER__ON_spin_speed = "200";                    // The speed at which the animation is to run. Lower numbers equal faster playbackvar HOUSE_GRINDER__ON_spin_object = "HOUSE_GRINDER__ON_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 HOUSE_GRINDER__ON_Preload_Images() {	if (document.images) {		HOUSE_GRINDER__ON_frame1 = new Image;		HOUSE_GRINDER__ON_frame1.src = "HOUSE_GRINDER__ON_frame01.jpg";		HOUSE_GRINDER__ON_frame2 = new Image;		HOUSE_GRINDER__ON_frame2.src = "HOUSE_GRINDER__ON_frame02.jpg";		HOUSE_GRINDER__ON_frame3 = new Image;		HOUSE_GRINDER__ON_frame3.src = "HOUSE_GRINDER__ON_frame03.jpg";		HOUSE_GRINDER__ON_frame4 = new Image;		HOUSE_GRINDER__ON_frame4.src = "HOUSE_GRINDER__ON_frame04.jpg";		HOUSE_GRINDER__ON_frame5 = new Image;		HOUSE_GRINDER__ON_frame5.src = "HOUSE_GRINDER__ON_frame05.jpg";		HOUSE_GRINDER__ON_frame6 = new Image;		HOUSE_GRINDER__ON_frame6.src = "HOUSE_GRINDER__ON_frame06.jpg";		HOUSE_GRINDER__ON_frame7 = new Image;		HOUSE_GRINDER__ON_frame7.src = "HOUSE_GRINDER__ON_frame07.jpg";		HOUSE_GRINDER__ON_frame8 = new Image;		HOUSE_GRINDER__ON_frame8.src = "HOUSE_GRINDER__ON_frame08.jpg";		HOUSE_GRINDER__ON_frame9 = new Image;		HOUSE_GRINDER__ON_frame9.src = "HOUSE_GRINDER__ON_frame09.jpg";		HOUSE_GRINDER__ON_frame10 = new Image;		HOUSE_GRINDER__ON_frame10.src = "HOUSE_GRINDER__ON_frame10.jpg";		HOUSE_GRINDER__ON_frame11 = new Image;		HOUSE_GRINDER__ON_frame11.src = "HOUSE_GRINDER__ON_frame11.jpg";		HOUSE_GRINDER__ON_frame12 = new Image;		HOUSE_GRINDER__ON_frame12.src = "HOUSE_GRINDER__ON_frame12.jpg";		HOUSE_GRINDER__ON_frame13 = new Image;		HOUSE_GRINDER__ON_frame13.src = "HOUSE_GRINDER__ON_frame13.jpg";		HOUSE_GRINDER__ON_frame14 = new Image;		HOUSE_GRINDER__ON_frame14.src = "HOUSE_GRINDER__ON_frame14.jpg";		HOUSE_GRINDER__ON_frame15 = new Image;		HOUSE_GRINDER__ON_frame15.src = "HOUSE_GRINDER__ON_frame15.jpg";		HOUSE_GRINDER__ON_frame16 = new Image;		HOUSE_GRINDER__ON_frame16.src = "HOUSE_GRINDER__ON_frame16.jpg";		HOUSE_GRINDER__ON_preloadFlag = true;	}}// Function that handles the rollovers when you mouse over a buttonfunction HOUSE_GRINDER__ON_Rollover(HOUSE_GRINDER__ON_imgDocID,HOUSE_GRINDER__ON_imgNumber) {	HOUSE_GRINDER__ON_shot_number = HOUSE_GRINDER__ON_imgNumber;	HOUSE_GRINDER__ON_spinning = "NO";	document.images[HOUSE_GRINDER__ON_imgDocID].src = eval("HOUSE_GRINDER__ON_frame" + HOUSE_GRINDER__ON_shot_number + ".src");}// Function that handles the Auto-Spinfunction HOUSE_GRINDER__ON_Auto_Spin(HOUSE_GRINDER__ON_imgDocID,HOUSE_GRINDER__ON_imgObjName) {	if (HOUSE_GRINDER__ON_spinning == "YES") {		if (HOUSE_GRINDER__ON_spin_direction == "RIGHT") {			document.images[HOUSE_GRINDER__ON_imgDocID].src = eval(HOUSE_GRINDER__ON_imgObjName + HOUSE_GRINDER__ON_shot_number + ".src");			if (HOUSE_GRINDER__ON_shot_number == HOUSE_GRINDER__ON_total_frames) {				HOUSE_GRINDER__ON_shot_number = "1";			} else {				HOUSE_GRINDER__ON_shot_number = eval(HOUSE_GRINDER__ON_shot_number + " + 1");			}			setTimeout("HOUSE_GRINDER__ON_Auto_Spin(HOUSE_GRINDER__ON_spin_object,'HOUSE_GRINDER__ON_frame');",HOUSE_GRINDER__ON_spin_speed);		} else {			document.images[HOUSE_GRINDER__ON_imgDocID].src = eval(HOUSE_GRINDER__ON_imgObjName + HOUSE_GRINDER__ON_shot_number + ".src");			if (HOUSE_GRINDER__ON_shot_number == "1") {				HOUSE_GRINDER__ON_shot_number = HOUSE_GRINDER__ON_total_frames;			} else {				HOUSE_GRINDER__ON_shot_number = eval(HOUSE_GRINDER__ON_shot_number + " - 1");			}			setTimeout("HOUSE_GRINDER__ON_Auto_Spin(HOUSE_GRINDER__ON_spin_object,'HOUSE_GRINDER__ON_frame');",HOUSE_GRINDER__ON_spin_speed);		}	}}document.write('');document.write('<MAP NAME="HOUSE_GRINDER__ON_VR">');document.write('<AREA SHAPE="rect" COORDS="0,0,39,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'1\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="40,0,79,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'2\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="80,0,119,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'3\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="120,0,159,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'4\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="160,0,199,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'5\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="200,0,239,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'6\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="240,0,279,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'7\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="280,0,319,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'8\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="320,0,359,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'9\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="360,0,399,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'10\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="400,0,439,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'11\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="440,0,479,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'12\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="480,0,519,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'13\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="520,0,559,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'14\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="560,0,599,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'15\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="600,0,639,480" HREF="#" ONMOUSEOVER="HOUSE_GRINDER__ON_Rollover(\'HOUSE_GRINDER__ON_STech\',\'16\'); window.status=\'\'; return true;" ONFOCUS="HOUSE_GRINDER__ON_STech.blur(); return true;">');document.write('</MAP>');// STOP HIDING FROM OTHER BROWSERS -->