<!-- 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.youtube.com/v/IuLZJH1i058?fs=1&amp;hl=en_US'
theImages[1] = 'http://www.youtube.com/v/ga7w2clUmVY?fs=1&amp;hl=en_US'
theImages[2] = 'http://www.youtube.com/v/78NB-lHtcFg?fs=1&amp;hl=en_US'
theImages[3] = 'http://www.youtube.com/v/Ba4AlftbCBY?fs=1&amp;hl=en_US'
theImages[4] = 'http://www.youtube.com/v/5691qKIUkbU?fs=1&amp;hl=en_US'
theImages[5] = 'http://www.youtube.com/v/VBkFE7l98e4?fs=1&amp;hl=en_US'

// 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 showImage(){
document.write('<object width="290" height="170"><param name="movie" value="'+theImages[whichImage]+'"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="'+theImages[whichImage]+'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="290" height="170"></embed></object>');

}

//  End -->

