function cornerImageLoader()
{
    //var imgPath = "/Users/barczysm/Sites/rw_local/Matthew_Attic_Public/assets/"
var imgPath = "/matthew.barczys/rw/assets/"

var cImgNames = new Array()
var cImgTitles = new Array()
    //List all the images to be included here (best to use absolute paths so
    //that this js file can be called from various pages on the site)
    // Also include the titles (displayed when mouse is on image)
cImgNames[0] = imgPath + "ana_art_bits.jpg"
cImgTitles[0] = "Ana's art media"
cImgNames[1] = imgPath + "ana_foot.jpg"
cImgTitles[1] = "Ana's foot"
cImgNames[2] = imgPath + "ana_paint_hand.jpg"
cImgTitles[2] = "Ana's hand print"
cImgNames[3] = imgPath + "bath_water.jpg"
cImgTitles[3] = "Ripples in Ana's bath water"
cImgNames[4] = imgPath + "building_art_mfah.jpg"
cImgTitles[4] = "Building with artwork near Museum of Fine Arts, Houston"
cImgNames[5] = imgPath + "checkered_carpet.jpg"
cImgTitles[5] = "Carpet"
cImgNames[6] = imgPath + "christmas_tree_blur.jpg"
cImgTitles[6] = "Blurred Christmas Tree"
cImgNames[7] = imgPath + "cloud_formation_1.jpg"
cImgTitles[7] = "Interesting clouds"
cImgNames[8] = imgPath + "griffith_astronomers.jpg"
cImgTitles[8] = "Astronomers Monument at Griffith Observatory"
cImgNames[9] = imgPath + "houston_bldg_1.jpg"
cImgTitles[9] = "Building near Museum of Fine Arts, Houston"
cImgNames[10] = imgPath + "houston_bldg_2.jpg"
cImgTitles[10] = "Houston building"
cImgNames[11] = imgPath + "jsc_moon_diorama.jpg"
cImgTitles[11] = "Moon diorama at Space Center Houston"
cImgNames[12] = imgPath + "jsc_spacewalk.jpg"
cImgTitles[12] = "Edward White spacesuit at Space Center Houston"
cImgNames[13] = imgPath + "limo_lights.jpg"
cImgTitles[13] = "Ceiling lights in a limo"
cImgNames[14] = imgPath + "mallard_ducks.jpg"
cImgTitles[14] = "Mallard Ducks"
cImgNames[15] = imgPath + "mem_hermann_med_plaza.jpg"
cImgTitles[15] = "Memorial Hermann Medical Plaza"
cImgNames[16] = imgPath + "night_tree.jpg"
cImgTitles[16] = "Leaf-less tree at night"
cImgNames[17] = imgPath + "ravenwood_18.jpg"
cImgTitles[17] = "The 18th flag at Ravenwood Golf Course"
cImgNames[18] = imgPath + "s2000_badge.jpg"
cImgTitles[18] = "Side name plate on Honda S2000"
cImgNames[19] = imgPath + "saturn_v.jpg"
cImgTitles[19] = "Saturn V Rocket at Johnson Space Center"
cImgNames[20] = imgPath + "seaside_walk.jpg"
cImgTitles[20] = "Seaside Walk, Long Beach, CA"
cImgNames[21] = imgPath + "shadows.jpg"
cImgTitles[21] = "Daughter and Daddy"
cImgNames[22] = imgPath + "shuttle_cockpit.jpg"
cImgTitles[22] = "Space Shuttle cockpit mockup at Space Center Houston"
cImgNames[23] = imgPath + "storm_clouds.jpg"
cImgTitles[23] = "Clouds of approaching thunderstorms"
cImgNames[24] = imgPath + "woodlands_waterpark.jpg"
cImgTitles[24] = "Waterpark building at The Woodlands Resort & Conference Center"

    // Pick a random item in the array
imgNum = Math.round(Math.random() * (cImgNames.length - 1))

    //The IMG tag must be named "cornerImage" on the page.
document.images.cornerImage.src = cImgNames[imgNum]
document.images.cornerImage.title = cImgTitles[imgNum]

    //The A tag on the image must be named "cornerImage"
    //document.anchors.cornerImage.href = cImgNames[imgNum]
    }
