var whichImage1 = 0;
var rannum = 0;
var imglength = 0;
var theImages = new Array()
  theImages[0] = '/img/randomimages/01.jpg'
  theImages[1] = '/img/randomimages/02.jpg'
  theImages[2] = '/img/randomimages/03.jpg'
  theImages[3] = '/img/randomimages/04.jpg'
  theImages[4] = '/img/randomimages/05.jpg'
  theImages[5] = '/img/randomimages/06.jpg'
  theImages[6] = '/img/randomimages/07.jpg'
  theImages[7] = '/img/randomimages/08.jpg'
  theImages[8] = '/img/randomimages/09.jpg'
  theImages[9] = '/img/randomimages/10.jpg'
  theImages[10] = '/img/randomimages/11.jpg'
  theImages[11] = '/img/randomimages/12.jpg'


rannum = Math.random();
imglength = theImages.length;

var rannum1 = Math.floor(Math.random() * imglength)

whichImage1 = rannum1;


function showImage1(){
  document.write('<br><font style=font-size:11.0pt;font-family:Georgia;color:#808000;font-weight:bold;>HoPS Members and Activities</font><br><img src="'+theImages[whichImage1]+'" width="225" >');
}

