/*
	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("04_dejavu/water_20100203-008_500.jpg", "", "Full saturated carpet in master bedroom - check out the way the leg of the sweatpants acted as a wick"));
ss.add_slide(new slide("04_dejavu/water_20100203-016_500.jpg", "", "The cause of it all"));ss.add_slide(new slide("04_dejavu/water_20100203-012_500.jpg", "", "The water sprayed so long that the paint on the wall began to sag - and guess what's underneath? More foil wallpaper!"));
ss.add_slide(new slide("04_dejavu/water_20100203-017_500.jpg", "", "Even the closets in the hallway got wet"));
ss.add_slide(new slide("04_dejavu/water_20100204-014_500.jpg", "", "Sort of like the ICU at the hospital"));
ss.add_slide(new slide("04_dejavu/water_20100204-002_500.jpg", "", "It really is -- sort of a dialysis machine for houses"));
ss.add_slide(new slide("04_dejavu/water_20100204-003_500.jpg", "", "Blowing hot air"));
ss.add_slide(new slide("04_dejavu/water_20100204-004_500.jpg", "", "Even the cold-air return to the furnace has to be dried out"));
ss.add_slide(new slide("04_dejavu/water_20100204-005_500.jpg", "", "I think I've seen this scene somewhere before - reminds me of my bedroom during the tile installation"));
ss.add_slide(new slide("04_dejavu/water_20100204-006_500.jpg", "", "Another blowhard"));
ss.add_slide(new slide("04_dejavu/water_20100204-008_500.jpg", "", "The bedroom machines"));
ss.add_slide(new slide("04_dejavu/water_20100204-009_500.jpg", "", "More life-support"));
ss.add_slide(new slide("04_dejavu/water_20100204-010_500.jpg", "", "Amazingly, there are several boxes of these 50-year old tiles in the garage -- handy for the repairs"));
ss.add_slide(new slide("04_dejavu/water_20100204-011_500.jpg", "", ""));



