// JavaScript Document
  // set default image dimensions: width, height
	setDefDims( 400, 269 );

	// list all of the images in this gallery
	// addImg( filename, description, width, height );
	addImg( "image1.jpg", "Welcome to North Memorial. Park in the ramp attached to the right of the hospital when in labor." );
	addImg( "image2.jpg", "Lisa Brown, our family advocate, is available for tours, to answer questions or assist you with referrals and special requests.");
	addImg( "image3.jpg", "The Family Birth Place desk is your first stop when you arrive on the 3rd floor." );
	addImg( "image4.jpg", "Labor Assessment area is for labor evaluations, prenatal testing and procedures." );
	addImg( "image5.jpg", "Health Unit Coordinators will greet you upon arrival to Labor & Delivery.", 202, 300);
	addImg( "image6.jpg", "Labor & Delivery Room: You will experience labor, delivery and recovery in one room.");
	addImg( "image7.jpg", "The Operating Room is used for planned and emergency cesarean births, tubal ligations and multiple birth deliveries.");
	addImg( "image8.jpg", "NICU: If your baby arrives early or with health problems, our Newborn Intensive Care Unit (NICU) is immediately available.");
	addImg( "image9.jpg", "Your family will move to a private patient room once your baby is born." );
	addImg( "image10.jpg", "Thanks for choosing North Memorial for your baby's birth.");

  // tell where the images and their thumbnails are located, then describe how you want the thumbnail grid layout
  setImgDir( "/women_children/slideshow/images/photos/" );
  setThumbDir( "/women_children/slideshow/images/photos/thumbs/" );
  setThumbWidth( 56 );
	setThumbClass( "thumb" );
  //	setThumbPage( "demo2_thumb.htm" );
  //  setImgPage( "demo2_img.htm" );
	setThumbPage( "vtour.cfm" );
	setImgPage( "vtourImages.cfm" );
	// 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" );

