function randomImage() {var headImages = new Array(
'http://www.nuigalway.ie/images/buildings/1000/inside_quad.jpg',
'http://www.nuigalway.ie/images/buildings/1000/it_at_dusk.jpg'  /* 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;
}

