
<!-- Start
// Set up the image files to be used.
var themovies = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

themovies[0] = 'flash/animation1.swf'
themovies[1] = 'flash/animation2.swf'
themovies[2] = 'flash/animation3.swf'
themovies[3] = 'flash/animation4.swf'
themovies[4] = 'flash/animation5.swf'

// do not edit anything below this line

var j = 0
var p = themovies.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
	 preBuffer[i] = new Image()
	 preBuffer[i].src = themovies[i]
}
var whichmovie = Math.round(Math.random()*(p-1));
function showmovie(){

document.write('<object type="application/x-shockwave-flash" data="' + themovies[whichmovie] + '" width="480" height="433">');
document.write('<param name="movie" value="' + themovies[whichmovie] + '" />');
document.write('<param name="wmode" value="transparent" />');
document.write('</object>');

//document.write('<embed width="622px" height="323" src="'+themovies[whichmovie]+'">');
}

//  End -->

