/*
	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("01_sotu/gmk20100127.gif", "", "Gary Markstein"));
ss.add_slide(new slide("01_sotu/jm20100131.gif", "", "Jim Morin"));
ss.add_slide(new slide("01_sotu/lk20100127.gif", "", "Mike Luckovich"));
ss.add_slide(new slide("01_sotu/lk20100129.gif", "", "Mike Luckovich"));
ss.add_slide(new slide("01_sotu/na20100127.gif", "", "Nick Anderson"));
ss.add_slide(new slide("01_sotu/na20100129.gif", "", "Nick Anderson"));
ss.add_slide(new slide("01_sotu/po20100128.gif", "", "Pat Oliphant"));
ss.add_slide(new slide("01_sotu/sc20100128.gif", "", "Stuart Carlson"));
ss.add_slide(new slide("01_sotu/ta20100129.gif", "", "Tony Auth"));
ss.add_slide(new slide("01_sotu/tt20100120.gif", "", "Tom Toles"));
ss.add_slide(new slide("01_sotu/tt20100121.gif", "", "Tom Toles"));


