// Image Rotation Script.

<!-- Begin

var theImages = new Array() // do not change this

theImages[0] = 'http://www.mil-sys.com/rotatorz/Tillie1.jpg'
theImages[1] = 'http://www.mil-sys.com/rotatorz/Phil1.jpg'
theImages[2] = 'http://www.mil-sys.com/rotatorz/Hugo1.jpg'
//theImages[3] = 'http://philwarren.fatcow.com/testmilsite/rotatorz/MikeB1.jpg'
//theImages[4] = 'http://philwarren.fatcow.com/testmilsite/rotatorz/Kevin1.jpg'
//theImages[5] = 'http://philwarren.fatcow.com/testmilsite/rotatorz/Megan1.jpg'
//theImages[6] = 'http://philwarren.fatcow.com/testmilsite/rotatorz/MikeC1.jpg'
//theImages[7] = 'http://philwarren.fatcow.com/testmilsite/rotatorz/Glenn1.jpg'

// if you change anything below this line, babies will die.  Cute babies.  Why would you want that?

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('<a href="../support.html"><img alt="Eager to Help at Millennium Systems<small><sup>®</sup></small>  Network Solutions" src="'+theImages[whichImage]+'" /></a>');
}

//  End -->