//  -------------------------------------
// Image swapping
// Requires supporting code from level2.js

// Set image array
// Name your images 0.jpg, 1.jpg, etc...
  var aryImages = new Array(33);
  for (i=0; i < aryImages.length; i++) {
   		aryImages[i] = i + ".jpg";
  }
  
// called from onLoad in body tag  
  function preLoad() {
	  for (i=0; i < aryImages.length; i++) {
	    var preload = new Image();
	    preload.src = "images/gallery/2006/" + aryImages[i];
	  }  
  } 

// Set the path to gallery
  function swap(imgIndex) {
    document['imgMain'].src = "images/gallery/2006/" + aryImages[imgIndex];
  }
 
 	var credits = "<BR>Photo by Maggie Celestina";
	
// Set the text array 
	var aryText = new Array(33);  
	aryText[0] = "";
	aryText[1] = "Girl Scout Troop # 1180.";
	aryText[2] = "Craig-man brought Cambria on her first Toy Run.";
	aryText[3] = "A little mist wouldn't stop the faithful from delivering toys to the kids.  Thanks, guys!";
	aryText[4] = "Just some of the two 75' tables of toys.  More were underneath.";
	aryText[5] = "Mert Austin showed up with presents.";
	aryText[6] = "No need to worry about a fire today!";
	aryText[7] = "Yeah, Santa rides a Harley-Davidson!  Thanks Ron.";
	aryText[8] = "Sparky and his daughter were dressed appropriately.";
	aryText[9] = "Just some of the food waiting to be picked up.";
	aryText[10] = "Sheriff Royal, \"Singing in the Rain\". ";
	aryText[11] = "The blowing mist couldn't keep Jeanette Royal and Bill Drown from making it!";
	aryText[12] = "Debbie Painter got a ride with a Vietnam Vet.";
	aryText[13] = "Thom and Theresa after counting 414 bikes.";
	aryText[14] = "Santa's sleigh with a bear and an elf.";
	aryText[15] = "G.V.P.D. and the C.H.P.";
	aryText[16] = "Hot coffee and leathers will trump a little mist.";
	aryText[17] = "Robert Carrillos Leathers set up.";
	aryText[18] = "Mike McGowen's \"stock\" Triumph.";
	aryText[19] = "Cpl. Walt Jones and G.V. Motor Officer Brian Hooper.";
	aryText[20] = "Some of the Sheriff's Volunteers keeping dry.  Where is Tony?";
	aryText[21] = "Bo and Debbie on the inside, Thom (my antlers fell off) and Theresa on the outside.";
	aryText[22] = "Jeanette's rain gear designed by Zip Lock.";
	aryText[23] = "Yeah, I said it never rains on my Toy Run, and I am sticking with it.";
	aryText[24] = "275-10lb bags of potatoes.";
	aryText[25] = "Last minute check.";
	aryText[26] = "We call this, \"Cop Bike in the Mist.\"";
	aryText[27] = "Lynn had an easy time moving our, warm, long-sleeved Toy Run shirts.";
	aryText[28] = "Thom, Sue Sotelo, and Sheriff's Lt. (retired) Mike Hughes.";
	aryText[29] = "I didn't know we were giving out those for gifts!";
	aryText[30] = "One happy little girl!";
	aryText[31] = "The C.H.P. was positively glowing.";
	aryText[32] = "The Firemen showed up to lend their support.";
//  -----------------------------------------
