var SpotRand =  (Math.round((Math.random()*1)+1));

if (SpotRand == 1) {
	SpotURL = 'diningdecisions.html';
	SpotIMG = '../images/foodnutrition_feature_top.gif';
	SpotALT = 'Dining Decisions';
	SpotTXT = '<b>Play</b></a> this fast-paced game to show how you can make the best decisions in the cafeteria. ';
}

if (SpotRand == 2) {
	SpotURL = 'cooltreats.html';
	SpotIMG = '../images/cooltreats_feature_top.jpg';
	SpotALT = 'Cool Treats';
	SpotTXT = '<b>Recipes</b></a> for quick, easy, tasty, and healthy treats. ';
}

function RandSpotlight() {
	document.write('					<div style="position: relative;">');
	document.write('						<a href="' + SpotURL + '"><img src="' + SpotIMG + '" width="520" height="234" border="0" alt="' + SpotALT + '"></a><br />');
	document.write('					</div>');
	document.write('					<div style="background: url(../images/foodnutrition_feature_bg.gif) repeat-y; width: 520px;">');
	document.write('						<div style="margin: 0px 15px 0px 15px;" class="bodyTextBlack">');
	document.write('							<a href="' + SpotURL + '" class="black">' + SpotTXT );
	document.write('						</div>');
	document.write('					</div>');
}
