// JavaScript to randomize the header photo// Set the total number of header photosimgCount = 3;// randomize and write string// (if items are added to this list, be sure to change the featureItems number above)function randomHeader() {var randomNum = Math.ceil(Math.random() * imgCount);if (document.body.id == 'home') {	document.getElementById('header').style.backgroundImage = 'url(/graphics/header-photo-home' + randomNum + '.jpg)';} else {	document.getElementById('header').style.backgroundImage = 'url(/graphics/header-photo' + randomNum + '.jpg)';}}