/*
	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("18_contempt/tt20091214.png", "", "Tom Toles"));
ss.add_slide(new slide("18_contempt/jm20091215.png", "", "Jim Morin"));
ss.add_slide(new slide("18_contempt/lb20091215.png", "", "Lisa Benson"));
ss.add_slide(new slide("18_contempt/po20091215.png", "", "Pat Oliphant"));
ss.add_slide(new slide("18_contempt/na20091216.png", "", "Nick Anderson"));
ss.add_slide(new slide("18_contempt/ta20091217.png", "", "Tony Auth"));
ss.add_slide(new slide("18_contempt/lk20091217.png", "", "Mike Luckovich"));
ss.add_slide(new slide("18_contempt/bs20091218.png", "", "Ben Sargent"));
ss.add_slide(new slide("18_contempt/sc20091218.png", "", "Stuart Carlson"));
ss.add_slide(new slide("18_contempt/ta20091218.png", "", "Tony Auth"));
ss.add_slide(new slide("18_contempt/jm20091218.png", "", "Jim Morin"));
ss.add_slide(new slide("18_contempt/sw20091219.png", "", "Signe Wilkinson"));


