// this is file transcendent_visions_include.js


//----------------------------------------------------------------

function createDisplayedImagesElement(imageName, copyrightYear, thumbURL, thumbWidth, thumbHeight, regularURL, regularWidth, regularHeight)

//----------------------------------------------------------------
{

if ((pageName == "Gallery") || (pageName == "Prints" && itemCodeArray[imageName]))
   {
   displayedImages[displayedImages.length] = new imageRecord(imageName, copyrightYear, thumbURL, thumbWidth, thumbHeight, regularURL, regularWidth, regularHeight);
   }
}

//----------------------------------------------------------------

function initializeDisplayedImagesArray () 

//----------------------------------------------------------------
{

 if (displayedImages.length != 0)
   {
   return;
   }

galleryImagePath = "./images/";

createDisplayedImagesElement("Blue Grotto on the Sea of Glass", "2003", "blue_grotto_on_the_sea_of_glass_200x150h.jpg", 200, 150, "blue_grotto_on_the_sea_of_glass_700x525h.jpg", 700,525);

createDisplayedImagesElement("Cosmic Crucible", "2004", "cosmic_crucible_200x150h.jpg", 200, 150, "cosmic_crucible_700x525h.jpg", 700,525);

createDisplayedImagesElement("Crystal Bridge over the Abyss", "2003", "crystal_bridge_over_the_abyss_200x150h.jpg", 200, 150, "crystal_bridge_over_the_abyss_700x525h.jpg", 700,525);

createDisplayedImagesElement("Divine Indweller", "2003", "divine_indweller_200x150h.jpg", 200, 150, "divine_indweller_700x525h.jpg", 700,525);

createDisplayedImagesElement("Encounter on the Shining Plains", "2003", "encounter_on_the_shining_plains_200x150h.jpg", 200, 150, "encounter_on_the_shining_plains_700x525h.jpg", 700,525);

createDisplayedImagesElement("Expanding Horizons", "2004", "expanding_horizons_200x150h.jpg", 200, 150, "expanding_horizons_700x525h.jpg", 700,525);

createDisplayedImagesElement("Hall of Remembrance", "2004", "hall_of_remembrance_200x150h.jpg", 200, 150, "hall_of_remembrance_700x525h.jpg", 700,525);

createDisplayedImagesElement("I Dreamt I Dwelt in Marble Halls", "2003", "i_dreamt_i_dwelt_in_marble_halls_200x150h.jpg", 200, 150, "i_dreamt_i_dwelt_in_marble_halls_700x525h.jpg", 700,525);

createDisplayedImagesElement("In My Room", "2003", "in_my_room_200x150h.jpg", 200, 150, "in_my_room_700x525h.jpg", 700,525);

createDisplayedImagesElement("Introspection", "2004", "introspection_200x150h.jpg", 200, 150, "introspection_700x525h.jpg", 700,525);

createDisplayedImagesElement("New Dimensions", "2004", "new_dimensions_200x150h.jpg", 200, 150, "new_dimensions_700x525h.jpg", 700,525);

createDisplayedImagesElement("Room Within a Room", "2004", "room_within_a_room_200x150h.jpg", 200, 150, "room_within_a_room_700x525h.jpg", 700,525);

createDisplayedImagesElement("Temple of my Heart", "2003", "temple_of_my_heart_200x150h.jpg", 200, 150, "temple_of_my_heart_700x525h.jpg", 700,525);

createDisplayedImagesElement("The Cosmic Balance", "2004", "the_cosmic_balance_200x150h.jpg", 200, 150, "the_cosmic_balance_700x525h.jpg", 700,525);

createDisplayedImagesElement("The Passenger Ship of Life", "2003", "the_passenger_ship_of_life_200x150h.jpg", 200, 150, "the_passenger_ship_of_life_700x525h.jpg", 700,525);

createDisplayedImagesElement("The Pillars of Eternity", "2003", "the_pillars_of_eternity_200x150h.jpg", 200, 150, "the_pillars_of_eternity_700x525h.jpg", 700,525);

createDisplayedImagesElement("Transcendent Splash", "2004", "transcendent_splash_200x150h.jpg", 200, 150, "transcendent_splash_700x525h.jpg", 700,525);

createDisplayedImagesElement("When the Morning Stars Sang", "2003", "when_the_morning_stars_sang_200x150h.jpg", 200, 150, "when_the_morning_stars_sang_700x525h.jpg", 700,525);

createDisplayedImagesElement("Where Mind Alone Cannot Go", "2004", "where_mind_alone_cannot_go_200x150h.jpg", 200, 150, "where_mind_alone_cannot_go_700x525h.jpg", 700,525);
}

//End include file for thumbnail array initialization
