function GetRotatingImage()
{
  var strImagePath = '/cu/lweb/images/homepage/rotating/2009/';
  var intNumOfImages = 25;
  var intArrayPosition = Math.round(Math.random()*(intNumOfImages - 1));
  var aryImages = new Array();
  var strHTML = '';

  aryImages[0] = strImagePath + 'avery.2008-04-30.dsc_0235.jpg';
  aryImages[1] = strImagePath + 'burke.2008-04-16.DSC_2907.jpg';
  aryImages[2] = strImagePath + 'burke.2008-04-16.dsc_2987.jpg';
  aryImages[3] = strImagePath + 'business.2009-05-05.cu_0746.jpg';
  aryImages[4] = strImagePath + 'butler.2008-04-30.DSC_8784.jpg';
  aryImages[5] = strImagePath + 'butler.2008-04-30.dsc_8744.jpg';
  aryImages[6] = strImagePath + 'butler.2008-04-30.dsc_9144.jpg';
  aryImages[7] = strImagePath + 'butler.2009-05-05.cu_0205.jpg';
  aryImages[8] = strImagePath + 'dssc.2009-03-09.dsc_4343.jpg';
  aryImages[9] = strImagePath + 'dssc.2009-03-09.dsc_4347.jpg';
  aryImages[10] = strImagePath + 'eastasian.2009-05-05.cu_0368.jpg';
  aryImages[11] = strImagePath + 'eng.2009-05-05.cu_0494.jpg';
  aryImages[12] = strImagePath + 'geology.2008-04-30.DSC_0025.jpg';
  aryImages[13] = strImagePath + 'geology.2008-04-30.DSC_9914.jpg';
  aryImages[14] = strImagePath + 'jour.2008-04-30.DSC_9846.jpg';
  aryImages[15] = strImagePath + 'jour.2008-04-30.DSC_9893.jpg';
  aryImages[16] = strImagePath + 'lehman.2008-04-16.DSC_1598.jpg';
  aryImages[17] = strImagePath + 'lehman.2009-03-09.DSC_4612.jpg';
  aryImages[18] = strImagePath + 'lehman.2009-03-09.DSC_4615.jpg';
  aryImages[19] = strImagePath + 'lehman.2009-03-09.dsc_4513.jpg';
  aryImages[20] = strImagePath + 'lehman.2009-03-09.dsc_4542.jpg';
  aryImages[21] = strImagePath + 'lehman.2009-03-09.dsc_4551.jpg';
  aryImages[22] = strImagePath + 'lehman.2009-03-09.dsc_4570.jpg';
  aryImages[23] = strImagePath + 'rbml.2008-04-30.DSC_9639.jpg';
  aryImages[24] = strImagePath + 'socwk.2008-04-16.DSC_2486.jpg';
  document.write('<img id="imgPhoto1" src="' + aryImages[intArrayPosition] + '" width="499" height="135" border="0">');
}