<!--

var TotalQuotes = 3;

var quote1 = "A one-point increase in cognitive activity corresponded with a 33% reduction in the risk of Alzheimer’s";
var byline1 = "Journal of the American Medical Association"; 
var byimg1 = "NA";

var quote2 = "[Cognitive] training not only improved participants’ cognitive abilities, but the improvement persisted for 2 years after the training.";
var byline2 = "NIH NIA Press Release on it’s ACTIVE trial"; 
var byimg2 = "NA";

var quote3 = "People can delay and perhaps even prevent Alzheimer’s disease [through]…several practices—including remaining socially connected and keeping the brain stimulated.";
var byline3 = "The New York Times, March 22, 2005"; 
var byimg3 = "NA";

//CREATE VARS FOR FINAL DISPLAY
var quote
var byline
var byimg

//SELECT RANDOM NUMBER B/W 1 AND TOTAL NUMBER OF QUOTES
var rand = Math.floor(Math.random() * TotalQuotes);
var rand2 = rand+1;
var randStr = rand2 + '';

//SET FINAL DISPLAY VARS
quote = eval('quote' + randStr)
byline = eval('byline' + randStr)
byimg = eval('byimg' + randStr)


//WRITE OUT DISPLAY
document.write('<font class="quote">' + quote + '</font>')
document.write('<p>')
document.write('<div align="right">')
document.write('<font class="byline">-' + byline + '</font>')
if (byimg != 'NA') {
	document.write('<br><img src="' + byimg + '" alt="' + byCompany + '" vspace="4">')
}
document.write('</div>')

//  End -->