var mgGalleryData =
{
   init: function() {
      if( this.data == null )
      {
         this.loadData();
      }
      return this.data;
   },

   loadData: function() {
      this.data =
      [
         {
            file: "data-00",
            galleryName: "Current Work",
            contents: "Current Work",
            description: "My most recent images are contained in this gallery."
         },
         {
            file: "data-01",
            galleryName: "Gallery 1",
            contents: "Colorado",
            description: "Scenes from around Colorado."
         },
         {
            file: "data-02",
            galleryName: "Gallery 3",
            contents: "Escalante",
            description: "Escalante and 50-Mile Road."
         },
         {
            file: "data-03",
            galleryName: "Gallery 4",
            contents: "Aspen Forests",
            description: "Colorado Gold!"
         },
         {
            file: "data-04",
            galleryName: "Gallery 4",
            contents: "Fall Colors",
            description: "Fall colors."
         },
         {
            file: "data-05",
            galleryName: "Gallery 5",
            contents: "Infra Red",
            description:
               "Infra red scenes."
         },
         {
            file: "data-06",
            galleryName: "Gallery 6",
            contents: "Monochrome",
            description: "Monochrome images."
         },
         {
            file: "data-07",
            galleryName: "Gallery 7",
            contents: "New Mexico",
            description: "Scenes from New Mexico."
         },
         {
            file: "data-08",
            galleryName: "Gallery 8",
            contents: "South Platte River",
            description: "Scenes along the South Platte River."
         },
         {
            file: "data-09",
            galleryName: "Gallery 9",
            contents: "White Pocket",
            description: "This unique formation of brain sandstones in Arizona."
         },
         {
            file: "data-10",
            galleryName: "Gallery 10",
            contents: "Zion",
            description: "Scenes from Zion National Park, Utah."
         },
         {
            file: "data-11",
            galleryName: "Gallery 11",
            contents: "White Sands",
            description: "Scenes from White Sands National Park, NM."
         },
         {
            file: "data-12",
            galleryName: "Gallery 12",
            contents: "Urban Landscapes",
            description:
               "Here are some images from man-made urban landscapes.."
         },
         {
            file: "data-13",
            galleryName: "Gallery 13",
            contents: "South Park",
            description: "South Park is a large park land."
         },
         {
            file: "data-14",
            galleryName: "Gallery 14",
            contents: "Paria Rim Rocks",
            description: "The rim-rock area has many hoodoos."
         },
         {
            file: "data-15",
            galleryName: "Gallery 15",
            contents: "Saguaro",
            description: "Images of Saguaro and other cactus plants in the Sonoran Desert."
         },
         {
            file: "data-16",
            galleryName: "Gallery 16",
            contents: "Eastern Plains",
            description: "Images made in the Eastern Plains of Colorado."
         },
         {
            file: "data-17",
            galleryName: "Gallery 17",
            contents: "Bristlecone Pines",
            description:
               "Bristlecone pines grow twisted and gnarled by the wind at high " +
               "altitudes in Colorado."
         },
         {
            file: "data-18",
            galleryName: "Gallery 18",
            contents: "Abstract",
            description: "Some of my favorite abstract images."
         },
         {
            file: "data-19",
            galleryName: "Gallery 19",
            contents: "Slot Canyons",
            description: "Images from Antelope Canyon, just outside Page."
         },
         {
            file: "data-20",
            galleryName: "Gallery 20",
            contents: "Miscellaneous",
            description: "Miscellaneous images."
         }
      ];
   }
}



