// JavaScript Document
var arrMyImages = new Array();
arrMyImages[0] = "txt-testimonial-silk.png";
arrMyImages[1] = "txt-testimonial-seville.png";
arrMyImages[2] = "txt-testimonial-pound.png";
arrMyImages[3] = "txt-testimonial-patterson.png";


function init(){
	
	var imageObject = document.getElementById("myImage");
	var myNumber = Math.round(Math.random() * 3);
	
	imageObject.src = "images/titles/testimonials/" + arrMyImages[myNumber];

}