function randomImage() {var headImages = new Array(
'http://www.agrc.ie/images/agrc_header5.png'
/* Make sure there is no comma at the end of the last image listed */
);

/* All above images should be 1000px wide and 110px in height.  Please note that the logo image will overlay the leftmost 300px (approx.) */

var max = headImages.length;
var num = Math.floor((Math.random() * max));
if (document.getElementById) {
  var headerImageDiv = document.getElementById('logoimage');
  if (headerImageDiv) {
    headerImageDiv.style.backgroundImage = "url(" + headImages[num] + ")";
  }
}
return;
}
