// jsonload.js - lib of onload such as testimonials

// Testimonials
var imgs = new Array();
	imgs[0] = new Image();
	imgs[0].src = '/images/testimonial1.jpg';
	imgs[1] = new Image();
	imgs[1].src = '/images/testimonial2.jpg';
	imgs[2] = new Image();
	imgs[2].src = '/images/testimonial3.jpg';
	imgs[3] = new Image();
	imgs[3].src = '/images/testimonial4.jpg';
        //. . . and the rest of the images
        
window.onload = function(){ imgChange(); };  
