<!-- begin rotating image javascript here -->
<!-- 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="assets/images/rotate_jpg/aerial.jpg" />'
theImages[1] = '<img src="assets/images/rotate_jpg/bikes.jpg"  />'
theImages[2] = '<img src="assets/images/rotate_jpg/redline.jpg"  />'
theImages[3] = '<img src="assets/images/rotate_jpg/zipcars.jpg"  />'
theImages[4] = '<img src="assets/images/rotate_jpg/yield.jpg"  />'
theImages[5] = '<img src="assets/images/rotate_jpg/bus4.jpg"  />'
theImages[6] = '<img src="assets/images/rotate_jpg/walking.jpg"  />'
theImages[7] = '<img src="assets/images/rotate_jpg/meter2.jpg"  />'


// do not edit anything below this line

var p = theImages.length;
var whichImage = Math.round(Math.random()*(p-1)); function showImage(){ document.write( theImages[whichImage] ); }

//  End -->