﻿// Random Images - JavaScript Document
// 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="/getaskill/"><img alt="" src="/images/spotlight/spotlight-ad-cnn.jpg" width="207" height="145" /></a></p>';
images[1] = '<p><a href="/elcc/"><img alt="" src="/images/spotlight/spotlight-ad-elcc.jpg" width="207" height="145" /></a></p>';
images[2] = '<p><a href="/radio/"><img alt="" src="/images/spotlight/spotlight-ad-lcc-radio-4.jpg" width="207" height="145" /></a></p>';
images[3] = '<p><a href="/connect/"><img alt="" src="/images/spotlight/spotlight-ad-facebook.jpg" width="207" height="145" /></a></p>';
images[4] = '<p><a href="/tv/index.aspx#lansing"><img alt="" src="/images/spotlight/spotlight-ad-lld.jpg" width="207" height="145" /></a></p>';




index = Math.floor(Math.random() * images.length);
document.write(images[index]);