/* this is the JavaScript to generate a random Member Spotlight */

var spotlight = new Array();

spotlight[0]='<img src="images/logos/penford.gif" alt="Penford Corporation" width="140" height="31" /><br /><a href="http://www.penx.com/" target="_blank">Learn About Penford Corp.</a>';
spotlight[1]='<img src="images/logos/icm.gif" alt="ICM" width="150" height="68" /><br /><a href="http://www.icminc.com/" target="_blank">Learn About ICM</a>';
spotlight[2]='<img src="images/logos/iowa_corn.gif" alt="Iowa Corn" width="120" height="60" /><br /><a href="http://www.iowacorn.org/" target="_blank">Learn About Iowa Corn</a>';
spotlight[3]='<img src="images/logos/pohaku.gif" alt="Pohaku" width="160" height="35" /><br /><a href="http://www.gopohaku.com/" target="_blank">Learn About Pohaku</a>';
spotlight[4]='<img src="images/logos/west_central.gif" alt="West Central" width="103" height="62" /><br /><a href="http://www.west-central.com/" target="_blank">Learn About West Central</a>';

/*  quotes[5]='<img src="source.gif" alt="Member Name" width="YYY" height="YYY" /><br />text<br /><a href="url" target="_blank">Learn About Member Name</a>';  */

/* NOTE: the text CANNOT have single quotes or appostrophes in it */
/* IMAGES: should be no wider than 170px and should be placed in the images/logos folder */
/* IMAGES: to find the height/width, right-click on the image file, go to Properties, then the Summary tab */

var whichOne = Math.floor(Math.random()*(spotlight.length));
document.write(spotlight[whichOne]);