 
images = new Array;
	images[1] = '<img src="images_random/2011_6.gif" width="250" height="160" class="center" alt="">';
    images[2] = '<img src="images_random/2369.gif" width="250" height="160" class="center" alt="paralegal collection">';
  images[3] = '<img src="images_random/2011_5.gif" width="250" height="160" class="center" alt="">';
  images[4] = '<img src="images_random/1154.jpg" width="250" height="160" class="center" alt="girl writing at table">';
  images[5] = '<img src="images_random/2011_4.gif" width="250" height="160" class="center" alt="">';
  images[6] = '<img src="images_random/2011_2.gif" width="250" height="160" class="center" alt="">';
  images[7] = '<img src="images_random/2369.gif" width="250" height="160" class="center" alt="woman and man at table">';
  images[8] = '<img src="images_random/2391.gif" width="250" height="160" class="center" alt="students sitting in lounge chairs">';
  images[9] = '<img src="images_random/2011_1.gif" width="250" height="160" class="center" alt="">';
  images[10] = '<img src="images_random/2011_7.gif" width="250" height="160" class="center" alt="">';
  images[11] = '<img src="images_random/2500.jpg" width="250" height="160" class="center" alt="young woman smiling">';
  images[12] = '<img src="images_random/6478.jpg" width="250" height="160" class="center" alt="stack of books">'; 
  images[13] = '<img src="images_random/2011_3.gif" width="250" height="160" class="center" alt="">';
  images[14] = '<img src="images_random/2011_8.gif" width="250" height="160" class="center" alt="">';
  images[15] = '<img src="images_random/2011_4.gif" width="250" height="160" class="center" alt="">';
  images[16] = '<img src="images_random/9999.jpg" width="250" height="160" class="center" alt="Library exterior">';
var rand1 = 0;
var useRand = 0;
var imgnum = images.length - 1;
do {
var randnum = Math.random();
rand1 = Math.round((imgnum - 1) * randnum) + 1;
} while (rand1 == useRand);
useRand = rand1;
  document.write(images[useRand]);
  

