﻿// bodyImage = new Image;
	pict = "";
	alt = "";
	
	randomNum = Math.floor(Math.random() * 16) + 1;
	switch (randomNum)
	{
		case 1:
	        pict = "images/cabledrop.jpg";
	        alt = "Cable Drop";
	        break;
	    case 2:
	        pict= "images/horsebackriding.jpg";
	        alt = "Horseback Riding";
	        break;
	    case 3:
	        pict= "images/whitewaterrafting.jpg";
	        alt = "White Water Rafting";
	        break;
	    case 4:
	        pict= "images/repelling.jpg";
	        alt = "Repelling";
	        break;
	    case 5:
	        pict= "images/rockclimbing.jpg";
	        alt = "Rock Climbing";
	        break;
	    case 6:
	        pict= "images/rockclimbingwall.jpg";
	        alt = "Rock Climbing Wall";
	        break;
	    case 7:
	        pict= "images/tightrope.jpg";
	        alt = "Tightrope";
	        break;
	    case 8:
	        pict= "images/treecutting.jpg";
	        alt = "Tree Cutting";
	        break;
	    case 9:
	    	pict= "images/carwashing.jpg";
	    	alt = "Car Washing";
	    	break;
	    case 10:
	    	pict= "images/computerinstruction.jpg";
	    	alt = "Computer Instruction";
	    	break;
	    case 11:
	    	pict= "images/cooking.jpg";
	    	alt = "Cooking";
	    	break;
	    case 12:
	    	pict= "images/crosswalk.jpg";
	    	alt = "Crosswalk";
	    	break;
	    case 13:
	    	pict= "images/findingspices.jpg";
	    	alt = "Finding Spices";
	    	break;
	    case 14:
	    	pict= "images/readingbraille.jpg";
	    	alt = "Reading Braille";
	    	break;
	    case 15:
	    	pict= "images/woodshop.jpg";
	    	alt = "Wood Shop";
	    	break;
	    case 16:
	    	pict= "images/perkinsbrailler.jpg";
	    	alt = "Perkins Brailler";
	    	break;
	    default:
	        pict= "images/treecutting.jpg";
	        alt = "Tree Cutting";
	        break;
    }

