﻿<!-- 
// Random Images

//change number in new Array to match number of images in list
//always start list at 0

images = new Array(5);

images[0] = '<p><a href="/helpdesk/student_email/"><img alt="" src="/images/spotlight/spotlight-ad-email.jpg" width="207" height="145" /></a></p>';
images[1] = '<p><a href="/tv/#lansing"><img alt="" src="/images/spotlight/spotlight-ad-LLD.jpg" width="207" height="145" /></a></p>';
images[2] = '<p><a href="/parking/"><img alt="" src="/images/spotlight/spotlight-ad-parking-options.jpg" width="207" height="145" /></a></p>';
images[3] = '<p><a href="/elcc/"><img alt="" src="/images/spotlight/spotlight-ad-elcc.jpg" width="207" height="145" /></a></p>';
images[4] = '<p><a href="/mait/i3d/"><img alt="" src="/images/spotlight/spotlight-ad-i3d.jpg" width="207" height="145" /></a></p>';







index = Math.floor(Math.random() * images.length);

document.write(images[index]);
//-->
