<!-- 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] = 'http://www.schoolsuccessprofile.org/images/toprotatingphotos/topmenu_photo_threefriends.jpg'
theImages[1] = 'http://www.schoolsuccessprofile.org/images/toprotatingphotos/topmenu_photo_streethouses.jpg'
theImages[2] = 'http://www.schoolsuccessprofile.org/images/toprotatingphotos/topmenu_photo_streetfences.jpg'
theImages[3] = 'http://www.schoolsuccessprofile.org/images/toprotatingphotos/topmenu_photo_fivefriends.jpg'
theImages[4] = 'http://www.schoolsuccessprofile.org/images/toprotatingphotos/topmenu_photo_family.jpg'
theImages[5] = 'http://www.schoolsuccessprofile.org/images/toprotatingphotos/topmenu_photo_classteachyoung.jpg'
theImages[6] = 'http://www.schoolsuccessprofile.org/images/toprotatingphotos/topmenu_photo_classteachold.jpg'
theImages[7] = 'http://www.schoolsuccessprofile.org/images/toprotatingphotos/topmenu_photo_basketball.jpg'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showRandomImage(){
document.write('<img src="'+theImages[whichImage]+'" width="162" height="105" alt="Photo representing an SSP module">');
}
// end result img tag should look like this: <img src="http://www.schoolsuccessprofile.org/images/topmenu_photo_basketball.jpg" width="162" height="105" alt="Photo of kids playing basketball" border="0">

showRandomImage();

//  End -->