﻿<!-- 
// 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="/schedule/"><img alt="" src="/images/spotlight/spotlight-ad-think-spring.gif" width="207" height="145" /></a></p>';
images[1] = '<p><a href="/helpdesk/student_email/"><img alt="" src="/images/spotlight/spotlight-ad-email.jpg" width="207" height="145" /></a></p>';
images[2] = '<p><a href="/lcctv/cramjam/"><img alt="" src="/images/spotlight/spotlight-ad-cramJam.gif" width="207" height="145" /></a></p>';
images[3] = '<p><a href="/news/announcements/grant.aspx"><img alt="" src="/images/spotlight/spotlight-ad-channel-6.jpg" width="207" height="145" /></a></p>';
images[4] = '<p><a href="/transfer/"><img alt="" src="/images/spotlight/spotlight-ad-dana-anderson.jpg" width="207" height="145" /></a></p>';




index = Math.floor(Math.random() * images.length);

document.write(images[index]);
//-->