// JavaScript Document
  // set default image dimensions: width, height
	setDefDims( 450, 338 );

	// list all of the images in this gallery
	// addImg( filename, description, width, height );
	addImg( "01.gif", "About an hour before the parade and this kid's bored", 450, 338 );
	addImg( "02.gif" );
	addImg( "03.gif"  );
	addImg( "04.gif" );
	addImg( "05.gif" );
	addImg( "06.gif" );
	addImg( "07.gif" );
	addImg( "08.gif", "before...");
	addImg( "09.gif", "...after, all suited up" );
	addImg( "10.gif", "kids photographing Ludlow taking their picture. clearly, everyone's souls have been stolen and/or traded");
	addImg( "11.gif" );
	addImg( "12.gif" );
	addImg( "13.gif" );
	addImg( "14.gif" );
	addImg( "15.gif" );
	addImg( "16.gif" );
	addImg( "17.gif" );
	addImg( "18.gif" );
	addImg( "19.gif" );
	addImg( "20.gif", "");
	addImg( "21.gif" );
	addImg( "22.gif" );
	addImg( "23.gif" );
	addImg( "24.gif" );
	addImg( "25.gif" );

  // tell where the images and their thumbnails are located, then describe how you want the thumbnail grid layout
  setImgDir( "images/photos/" );
  setThumbDir( "images/photos/thumbs/" );
  setThumbWidth( 100 );
	setThumbClass( "thumb" );
  setThumbPage( "demo2_thumb.htm" );
	setImgPage( "demo2_img.htm" );
	// if you want to see "empty" thumbnails, uncomment the next line
	// setThumbEmptyClass( "emptythumb" );
	setThumbSpacing( 7 );
	setCols( 4 );
	setRows( 3 );
	// include an "all" option to show all of the thumbnails
	setThumbAll( true );

  setSpacer( "images/shim.gif" );
  setLoadingImg( "images/loading-image.gif" );


