<!-- 

var theImages = new Array(); 
var theText = new Array();

theImages[0] = imageSource + 'belrndcleat.jpg';
theText[0] = "Belay round a Cleat";
theImages[1] = imageSource + 'belroperoundbell.jpg';
theText[1] = "Belay rope round a Belay Pin";
theImages[2] = imageSource + 'bendhawsers.jpg';
theText[2] = "Bend Hawsers";
theImages[3] = imageSource + 'bowonbight.jpg';
theText[3] = "Bowline on the Bight";
theImages[4] = imageSource + 'bwallhitch.jpg';
theText[4] = "Blackwall Hitch";
theImages[5] = imageSource + 'catspaw.jpg';
theText[5] = "Catspaw";
theImages[6] = imageSource + 'chaincheckstop.jpg';
theText[6] = "Chain Check Stopper";
theImages[7] = imageSource + 'chainsplice1.jpg';
theText[7] = "Chain Splice";
theImages[8] = imageSource + 'clovehitch.jpg';
theText[8] = "Clove Hitch";
theImages[9] = imageSource + 'cutsplice1.jpg';
theText[9] = "Cut Splice";
theImages[10] = imageSource + 'ddknot.jpg';
theText[10] = "Double Diamond Knot";
theImages[11] = imageSource + 'dubbwallhitch.jpg';
theText[11] = "Double Blackwall Hitch";
theImages[12] = imageSource + 'dubmathew.jpg';
theText[12] = "Double Matthew Walker";
theImages[13] = imageSource + 'dubsheetbend.jpg';
theText[13] = "Double Sheet Bend";
theImages[14] = imageSource + 'fig8knot.jpg';
theText[14] = "Figure of 8 Knot";
theImages[15] = imageSource + 'halfhitch.jpg';
theText[15] = "Halh Hitch";
theImages[16] = imageSource + 'longsplice.jpg';
theText[16] = "Long Splice";
theImages[17] = imageSource + 'manropeknot.jpg';
theText[17] = "Manrope Knot";
theImages[18] = imageSource + 'manropeknot2.jpg';
theText[18] = "Manrope Knot";
theImages[19] = imageSource + 'marlinhitch.jpg';
theText[19] = "Marlin Hitch";
theImages[20] = imageSource + 'marlinspikehitch.jpg';
theText[20] = "Marlin Spike Hitch";
theImages[21] = imageSource + 'midshiphitch.jpg';
theText[21] = "Midshipman's Hitch";
theImages[22] = imageSource + 'mouseahook.jpg';
theText[22] = "Mouse a Hook";
theImages[23] = imageSource + 'overhandknot.jpg';
theText[23] = "Overhand Knot";
theImages[24] = imageSource + 'passastopper.jpg';
theText[24] = "Pass a Stopper";
theImages[25] = imageSource + 'rackingseizing1.jpg';
theText[25] = "Racking Seizing ";
theImages[26] = imageSource + 'rackseize2.jpg';
theText[26] = "Racking Seizing";
theImages[27] = imageSource + 'reefknot.jpg';
theText[27] = "Reef Knot";
theImages[28] = imageSource + 'rollinghitch.jpg';
theText[28] = "Rolling Hitch";
theImages[29] = imageSource + 'rollinghitch3.jpg';
theText[29] = "Rolling Hitch";
theImages[30] = imageSource + 'ropeyarnknot.jpg';
theText[30] = "Rope Yarn Knot";
theImages[31] = imageSource + 'rturn2hitch.jpg';
theText[31] = "Round Turn Two Hitches";
theImages[32] = imageSource + 'sailorknot.jpg';
theText[32] = "Sailor's Knot";
theImages[33] = imageSource + 'sheepshank.jpg';
theText[33] = "Sheep Shank";
theImages[34] = imageSource + 'singdiamondknot.jpg';
theText[34] = "Single Diamond Knot";
theImages[35] = imageSource + 'singdimon1.jpg';
theText[35] = "Single Diamond Knot";
theImages[36] = imageSource + 'singlemathew.jpg';
theText[36] = "Single Matthew Walker";
theImages[37] = imageSource + 'spanishwindlass.jpg';
theText[37] = "Spanish Windlass ";
theImages[38] = imageSource + 'swabhitch.jpg';
theText[38] = "Swab Hitch";
theImages[39] = imageSource + 'tailjigger.jpg';
theText[39] = "Tail Jigger";
theImages[40] = imageSource + 'timhitch.jpg';
theText[40] = "Timber Hitch";
theImages[41] = imageSource + 'timhitchplus.jpg';
theText[41] = "Timber Hitch and Half Hitch";
theImages[42] = imageSource + 'wallknot3.jpg';
theText[42] = "Wall Knot";
theImages[43] = imageSource + 'wallknot5.jpg';
theText[43] = "Wall Knot";
theImages[44] = imageSource + 'cutsplice2.jpg';
theText[44] = "Cut Splice";
theImages[45] = imageSource + 'rollinghitch4.jpg';
theText[45] = "Rolling Hitch";



var j = 0;
var p = theImages.length;
var preBuffer = new Array();
for (i = 0; i < p; i++){
   preBuffer[i] = new Image();
   preBuffer[i].src = theImages[i];
}
var whichImage = Math.round(Math.random()*(p-1));
whichText = theText[whichImage];
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
//document.write("<br />");
document.write("<div class = \"fontKnots\" align = \"center\">");
document.write(whichText);
document.write("</div>");
}


 -->