gSlideshowInterval=1;
gNumberOfImages=16;
gImages=new Array(gNumberOfImages);
gImages[0]="hand/L.gif";
gImages[1]="hand/L-R.gif";
gImages[2]="hand/L-M.gif";
gImages[3]="hand/L-RM.gif";
gImages[4]="hand/L-I.gif";
gImages[5]="hand/L-RI.gif";
gImages[6]="hand/L-MI.gif";
gImages[7]="hand/L-RMI.gif";
gImages[8]="hand/L-T.gif";
gImages[9]="hand/L-RT.gif";
gImages[10]="hand/L-MT.gif";
gImages[11]="hand/L-RMT.gif";
gImages[12]="hand/L-IT.gif";
gImages[13]="hand/L-RIT.gif";
gImages[14]="hand/L-MIT.gif";
gImages[15]="hand/L-RMIT.gif";
function
canManipulateImages(){if(document.images)return true;else
return false;}function loadSlide(imageURL){if (gImageCapableBrowser){document.slide.src=imageURL;return false;}else{return true;}}function
nextSlide(){gCurrentImage=(gCurrentImage+1) % gNumberOfImages;loadSlide(gImages[gCurrentImage]);}gImageCapableBrowser=canManipulateImages();gCurrentImage=0;setInterval("nextSlide()",gSlideshowInterval *1000);
