/*
	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("26_chezphil/title_500.jpg", "", ""));
ss.add_slide(new slide("26_chezphil/024_500.jpg", "", "The usual suspects: Santa Phil"));
ss.add_slide(new slide("26_chezphil/026_500.jpg", "", "R&eacute;al"));
ss.add_slide(new slide("26_chezphil/028_500.jpg", "", "Paul, and his chins"));
ss.add_slide(new slide("26_chezphil/032_500.jpg", "", "Ken"));
ss.add_slide(new slide("26_chezphil/bob_500.jpg", "", "Bob, in absentia"));
ss.add_slide(new slide("26_chezphil/023_500.jpg", "", "Starters"));
ss.add_slide(new slide("26_chezphil/002_500.jpg", "", "The turkey was so big it may have been related to an emu"));
ss.add_slide(new slide("26_chezphil/004_500.jpg", "", "R&eacute;al poured shots using the Holland America souvenir shot glasses"));
ss.add_slide(new slide("26_chezphil/007_500.jpg", "", "You cut the turkey, I'll mash the potatoes"));
ss.add_slide(new slide("26_chezphil/011_500.jpg", "", "Do you suppose he does windows, too?"));
ss.add_slide(new slide("26_chezphil/014_500.jpg", "", "Does anyone have Jenny Craig's number?"));
ss.add_slide(new slide("26_chezphil/015_500.jpg", "", "Awwwww!"));  
ss.add_slide(new slide("26_chezphil/017_500.jpg", "", "What a big apple pie!"));
ss.add_slide(new slide("26_chezphil/033_500.jpg", "", "The usual weather &mdash; sunny and warm"));
ss.add_slide(new slide("26_chezphil/038_500.jpg", "", "Right here, I'm going to put..."));
ss.add_slide(new slide("26_chezphil/037_500.jpg", "", "Sure you will..."));
ss.add_slide(new slide("26_chezphil/039_500.jpg", "", "[L-R] Ken, Phil, R&eacute;al relaxing in the back yard"));
ss.add_slide(new slide("26_chezphil/outtakes_500.jpg", "", ""));
ss.add_slide(new slide("26_chezphil/018_500.jpg", "", ""));
ss.add_slide(new slide("26_chezphil/030_500.jpg", "", ""));
ss.add_slide(new slide("26_chezphil/036_500.jpg", "", ""));
ss.add_slide(new slide("26_chezphil/016_500.jpg", "", ""));

