/*  Random header photo generator */

var mdw_photo_count = 4;                    // Change this nubmer as images are added or removed.
var mdw_photo_prefix = "jobs";   // This is what the filename must begin with before its unique number
var mdw_photo_suffix = ".gif";              // 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="http://morris.com/images/mast_pictures/' + mdw_photo_chosen + '" width="517" height="100" border="0" alt="">');
}

