<!-- 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/quote1.png" width="225" height="122"'
theImages[1] = 'http://www.realmagnet.com/images/testimonials/quote2.png" width="225" height="108"'
theImages[2] = 'http://www.realmagnet.com/images/testimonials/quote3.png" width="225" height="108"'
theImages[3] = 'http://www.realmagnet.com/images/testimonials/quote4.png" width="225" height="122"'
theImages[4] = 'http://www.realmagnet.com/images/testimonials/quote5.png" width="225" height="108"'
theImages[5] = 'http://www.realmagnet.com/images/testimonials/quote6.png" width="225" height="122"'
theImages[6] = 'http://www.realmagnet.com/images/testimonials/quote7.png" width="225" height="122"'
theImages[7] = 'http://www.realmagnet.com/images/testimonials/quote8.png" width="225" height="122"'
theImages[8] = 'http://www.realmagnet.com/images/testimonials/quote9.png" width="225" height="122"'
theImages[9] = 'http://www.realmagnet.com/images/testimonials/quote10.png" width="225" height="108"'
theImages[10] = 'http://www.realmagnet.com/images/testimonials/quote11.png" width="225" height="108"'
theImages[11] = 'http://www.realmagnet.com/images/testimonials/quote12.png" width="225" height="122"'
theImages[12] = 'http://www.realmagnet.com/images/testimonials/quote13.png" width="225" height="122"'
theImages[13] = 'http://www.realmagnet.com/images/testimonials/quote14.png" width="225" height="122"'
theImages[14] = 'http://www.realmagnet.com/images/testimonials/quote15.png" width="225" height="122"'
theImages[15] = 'http://www.realmagnet.com/images/testimonials/quote16.png" width="225" height="122"'
theImages[16] = 'http://www.realmagnet.com/images/testimonials/quote17.png" width="225" height="122"'
theImages[17] = 'http://www.realmagnet.com/images/testimonials/quote18.png" width="225" height="122"'


// 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]+'">');
}