<!-- Begin JS Script -->

<!-- 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.
//LEAVE THESE AS ABSOLUTE/WEB PATHS SO THAT CODE IN mm TEMPLATES AND SUCH HAVE THE RIGHT PATH TO THE TESTIMONIAL IMAGE 

theImages[0] = 'http://www.realmagnet.com/images/testimonials/testimonial1.png" width="547" height="97"'
theImages[1] = 'http://www.realmagnet.com/images/testimonials/testimonial2.png" width="547" height="97"'
theImages[2] = 'http://www.realmagnet.com/images/testimonials/testimonial3.png" width="547" height="97"'
theImages[3] = 'http://www.realmagnet.com/images/testimonials/testimonial4.png" width="547" height="97"'
theImages[4] = 'http://www.realmagnet.com/images/testimonials/testimonial5.png" width="547" height="97"'
theImages[5] = 'http://www.realmagnet.com/images/testimonials/testimonial6.png" width="547" height="97"'
theImages[6] = 'http://www.realmagnet.com/images/testimonials/testimonial7.png" width="547" height="97"'
theImages[7] = 'http://www.realmagnet.com/images/testimonials/testimonial8.png" width="547" height="97"'
theImages[8] = 'http://www.realmagnet.com/images/testimonials/testimonial9.png" width="547" height="97"'
theImages[9] = 'http://www.realmagnet.com/images/testimonials/testimonial10.png" width="547" height="97"'
theImages[10] = 'http://www.realmagnet.com/images/testimonials/testimonial11.png" width="547" height="97"'
theImages[11] = 'http://www.realmagnet.com/images/testimonials/testimonial12.png" width="547" height="97"'
theImages[12] = 'http://www.realmagnet.com/images/testimonials/testimonial13.png" width="547" height="97"'
theImages[13] = 'http://www.realmagnet.com/images/testimonials/testimonial14.png" width="547" height="97"'
theImages[14] = 'http://www.realmagnet.com/images/testimonials/testimonial15.png" width="547" height="97"'
theImages[15] = 'http://www.realmagnet.com/images/testimonials/testimonial16.png" width="547" height="97"'
theImages[16] = 'http://www.realmagnet.com/images/testimonials/testimonial17.png" width="547" height="97"'
theImages[15] = 'http://www.realmagnet.com/images/testimonials/testimonial16.png" width="547" height="97"'
theImages[16] = 'http://www.realmagnet.com/images/testimonials/testimonial17.png" width="547" height="97"'
theImages[17] = 'http://www.realmagnet.com/images/testimonials/testimonial18.png" width="547" height="97"'

// 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('<img src="'+theImages[whichImage]+'">');
}