/*  Random right rail photo generator */

var mdw_photo_count1 = 3;                    // Change this nubmer as images are added or removed.
var mdw_photo_prefix1 = "right_rail";   // This is what the filename must begin with before its unique number
var mdw_photo_suffix1 = ".gif";              // This is what the filename must end with after the unique number

function mdw_random_photo1() {
    var mdw_photo_chosen1 = mdw_photo_prefix1 + ( Math.floor(Math.random() * mdw_photo_count1) + 1 ) + mdw_photo_suffix1;
    document.write('<img src="/images/right_rail/' + mdw_photo_chosen1 + '" width="169" height="495" border="0" alt="">');
}

