﻿function GetRandomMasthead(varMastheadCount) {
    var numRand = Math.floor(Math.random() * varMastheadCount) + 1;
    document.getElementById("divHeader").style.backgroundImage = "url(upload/images/mastheads/masthead_" + numRand + ".jpg)";
}
