// JavaScript Document
						<!-- 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] = '/Images/testimonial-gf.jpg'
						theImages[1] = '/Images/testimonial-gf.jpg'
						theImages[2] = '/Images/testimonial-sh.jpg'
						theImages[3] = '/Images/testimonial-sh.jpg'
						theImages[4] = '/Images/testimonial-nyip.jpg'
						theImages[5] = '/Images/testimonial-tn.jpg'
						theImages[6] = '/Images/testimonial-nyip.jpg'
						theImages[7] = '/Images/testimonial-cs.jpg'
						theImages[8] = '/Images/testimonial-cs.jpg'
						theImages[9] = '/Images/testimonial-lyf.jpg'
						theImages[10] = '/Images/testimonial-lyf.jpg'
						theImages[11] = '/Images/testimonial-wh.jpg'
						theImages[12] = '/Images/testimonial-wh.jpg'
						theImages[13] = '/Images/testimonial-wh.jpg'
						theImages[14] = '/Images/testimonial-sh.jpg'

						// 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));
						
						document.write('<img src="'+theImages[whichImage]+'">');
						

						//  End -->
						
