<!-- SET THE MAX FEATURE COUNT (Total -1) -->
var maxFeatureNo = 5  <!-- 6 total - 1 = 5 -->


var featureNo
var myFeature = new Array()

<!-- MAKE SURE YOU HAVE ONE FOR EACH FEATURE IMAGE -->

myFeature[0] = '<a href="/centers-institutes/houston/about/history.html"><img src="images/banners/46.jpg" alt="History of the Charles H. Houston Center" border="0">'

myFeature[1] = '<a target="_blank" href="http://www.clemson.edu/newsroom/articles/2008/november/Flowers_NSFgrant.php5"><img src="images/banners/22.jpg" alt="Grant Explores the Educational Value of Distance Education" border="0">'

myFeature[2] = '<a href="/centers-institutes/houston/about/pressreleases5091.html"><img src="images/banners/50.jpg" alt="Issues in Remedial Education at the Postsecondary Level" border="0">'

myFeature[3] = '<a href="/centers-institutes/houston/about/index.html"><img src="images/banners/12.jpg" alt="Research that Makes a Difference" border="0">'

myFeature[4] = '<a target="_blank" href="http://www.clemson.edu/media-relations/article.php?article_id=2260"><img src="images/banners/49.jpg" alt="Houston Center Receives Grant for Study of Students at Historically Black Colleges" border="0">'

myFeature[5] = '<img src="images/banners/51.jpg" alt="W.E.B. Dubois Higher Education Award" border="0">'

<!-- DONT TOUCH -->
featureNo = Math.round(Math.random() * maxFeatureNo)
document.write(myFeature[featureNo])

<!-- IF NOTHING DISPLAYS ON THE PAGE THEN SOMETHING IS WRONG -->