<!-- 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 theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '<img src="/rsrb/images/rotate/image1.jpg" alt="nurse giving MRI">'
theImages[1] = '<img src="/rsrb/images/rotate/image2.jpg" alt="three doctors consulting">'
theImages[2] = '<img src="/rsrb/images/rotate/image3.jpg" alt="baby">'
theImages[3] = '<img src="/rsrb/images/rotate/image4.jpg" alt="kids in lab coats looking through microscopes">'
theImages[4] = '<img src="/rsrb/images/rotate/image5.jpg" alt="children reading"></a>'
theImages[5] = '<img src="/rsrb/images/rotate/image6.jpg" alt="researchers going over data">'
theImages[6] = '<img src="/rsrb/images/rotate/image7.jpg" alt="blood drop">'
theImages[7] = '<img src="/rsrb/images/rotate/image8.jpg" alt="two researchers in a lab">'
theImages[8] = '<img src="/rsrb/images/rotate/image9.jpg" alt="elderly man getting his blood pressure taken">'
theImages[9] = '<img src="/rsrb/images/rotate/image10.jpg" alt="research results presentation">'
theImages[10] = '<img src="/rsrb/images/rotate/image11.jpg" alt="pi and researchers"></a>'
theImages[11] = '<img src="/rsrb/images/rotate/image12.jpg" alt="band memebers playing clarinets">'
theImages[12] = '<img src="/rsrb/images/rotate/image13.jpg" alt="children">'


var p = theImages.length;
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write( theImages[whichImage] );
}

//  End -->

