// JavaScript Document
  // set default image dimensions: width, height
	setDefDims( 500, 332 );

	// list all of the images in this gallery
	// addImg( filename, description, width, height );
	addImg( "01.jpg" );
	addImg( "02.jpg" );
	addImg( "03.jpg" );
	addImg( "04.jpg" );
	addImg( "05.jpg" );
	addImg( "06.jpg" );
	addImg( "07.jpg" );
	addImg( "08.jpg" );
	addImg( "09.jpg" );
	addImg( "10.jpg" );

  // 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( 135 );
	setThumbClass( "thumb" );
  setThumbPage( "bart_thumbs.htm" );
	setImgPage( "bart_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" );


