
var Spotl = new Array(3) 
Spotl[0] = '<img name="spotlightimg" class="spotlightimg" src="/images/icons/new-ams.gif" width="90" height="90" /><h1><a href="/news">The All New American Slate</a></h1><p>A refreshing look at our company and products.</p>'
Spotl[1] = '<img name="spotlightimg" class="spotlightimg" src="/images/icons/new-website.gif" width="90" height="90" /><h1><a href="/contact">Like Our New Website?</a></h1><p>We welcome your feedback on our site - and our products.</p>'
Spotl[2] = '<img name="spotlightimg" class="spotlightimg" src="/images/icons/events.gif" width="90" height="90" /><h1><a href="/news">Industry Events</a></h1><p>Visit us at major industry events this year.</p>'


rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};

function rand(number) {
        return Math.ceil(rnd()*number);
};


getSpotlight(rand(3)-1); 

function getSpotlight(imgnum)
{

	document.getElementById('spotlight').innerHTML = Spotl[imgnum];	
// 	imgnum=imgnum+1;
//	if(imgnum>2){ imgnum = 0};
//		setTimeout("getSpotlight("+imgnum+")",5000);


}

