/*  Random header photo generator */



var mdw_photo_count = 17;                    // Change this nubmer as images are added or removed.

var mdw_photo_prefix = "header_pictures";   // This is what the filename must begin with before its unique number

var mdw_photo_suffix = ".jpg";              // This is what the filename must end with after the unique number



function mdw_random_photo() {

    var mdw_photo_chosen = mdw_photo_prefix + ( Math.floor(Math.random() * mdw_photo_count) + 1 ) + mdw_photo_suffix;

    document.write('<img src="/images/mast_pictures/' + mdw_photo_chosen + '" width="437" height="82" border="0" alt="">');

}

