/*
	SLIDELIST 
	
	This file defines the lists of pictures in the slideshow
	and an optional link and caption for each one.
	
	JavaScript Slideshow by Patrick Fitzgerald
	Get complete script and documentation at
	http://slideshow.barelyfitz.com/
*/


// ***** Define slideshow parameters ******

ss = new slideshow("ss");  // create the slideshow object
ss.prefetch = 5;   // limit number of images that are prefetched, default = all (-1), current (0)
ss.repeat = true;  // default, set false to stop after last slide, true to loop

// ***** List the slides and add them to the slideshow
// new slide ("src", "link", "caption", "window", "attr") ONLY src is required

ss.add_slide(new slide("/imglib/slideshow_title_500.png", "", "")); // title slide for the show

// ********* ADD SLIDES HERE ************
ss.add_slide(new slide("21_rain/storm2010-001_500.jpg", "", "At least the street in front of the house is nice and clean"));
ss.add_slide(new slide("21_rain/storm2010-003_500.jpg", "", "Storm drain at Baristo and Indian Canyon overwhelmed by water from three directions"));
ss.add_slide(new slide("21_rain/storm2010-008_500.jpg", "", "Baristo at Belardo, looking toward Indian Canyon"));
ss.add_slide(new slide("21_rain/storm2010-009_500.jpg", "", "Looking back toward the mountain from the same location. Baristo is a deep V for drainage."));
ss.add_slide(new slide("21_rain/storm2010-010_500.jpg", "", "Look! Waterfalls cascading down the mountain"));
ss.add_slide(new slide("21_rain/storm2010-012_500.jpg", "", "Wash from Tahquitz Canyon..."));
ss.add_slide(new slide("21_rain/storm2010-013_500.jpg", "", "And where it goes under Palm Canyon Drive"));
ss.add_slide(new slide("21_rain/storm2010-015_500.jpg", "", "Wash out of Palm Canyon, under Hwy 111"));
ss.add_slide(new slide("21_rain/storm2010-017_500.jpg", "", "There's a lot of water on the other side of the bridge"));
ss.add_slide(new slide("21_rain/storm2010-018_500.jpg", "", "Golf Club Drive between Hwy 111 and Dinah Shore Dr"));
ss.add_slide(new slide("21_rain/storm2010-024_500.jpg", "", "This would be the afore-mentioned Tahquitz Creek flowing through the Tahquitz Creek golf course"));
ss.add_slide(new slide("21_rain/storm2010-026_500.jpg", "", "Aw! The dog has his own raincoat and travel trailer"));
ss.add_slide(new slide("21_rain/storm2010-027_500.jpg", "", "Look how low the clouds are to the ground"));
ss.add_slide(new slide("21_rain/storm2010-029_500.jpg", "", ""));
ss.add_slide(new slide("21_rain/storm2010-032_500.jpg", "", "When the clouds clear, the mountain is going to be spectacularly white"));




