
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theStories = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theStories[0] = '<p>Computer science major David Eisenstat &#8217;06 was named this year&#8217;s Outstanding Male Undergraduate by the Computing Research Association in one of the most prestigious national competitions in computer science. Eisenstat beat out nearly 100 other students who were chosen as the best from their institutions. His published professional research papers in two completely different areas of computer science&#8212;a rare achievement for an undergraduate&#8212;won him the $1,000 award. <i>(May 4, 2006)</i></p>'
theStories[1] = '<p>Four biomedical engineering students at the University of Rochester have finished in second place in the Rehabilitation Engineering Research Center&#8217;s Accessible Medical Instrumentation Senior Design Competition for their medication dispenser that can be used by people with a variety of disabilities. The dispenser, called the "Dex," holds a week&#8217;s worth of medications and prompts the user when it is time to take a particular pill. <i>(July 19, 2006)</i> </p>'
theStories[2] = '<p>Physics undergraduate Scott Field &#8217;06 participated in the search for two subatomic particles whose existence was announced  by scientists at the Fermi National Accelerator Laboratory (Fermilab) in Illinois. <i>(October 23, 2006)</i></p>'
theStories[3] = '<p>Eleven University of Rochester undergraduate students whose artwork raises questions about the depiction of gender are featured in an annual juried exhibition titled "(en)GENDERED: identity, gender &amp; art," and is on display in the Art and Music Library.  <i>(January 17, 2007)</i></p>'
theStories[4] = '<p>To kick off National Engineers Week, Rochester&#8217;s branch of the American Society of Mechanical Engineers hosted an Egg Drop Design Competition. The goal of the competition is to design a device that will securely hold an egg, as it falls from the bridge and lands on the floor of Wilson Commons. The egg should withstand the fall without breaking. The three teams with the best scores receives cash and fun prizes. <i>(February 16, 2007)</i></p>'
// do not edit anything below this line

var p = theStories.length;
var whichStory = Math.round(Math.random()*(p-1));
function showStory(){
document.write( theStories[whichStory] );
}

//  End -->
