// jsonload.js - lib of onload such as testimonials

// Testimonials
var imgs = new Array();
	imgs[0] = new Image();
	imgs[0].src = '/images/pics/mycar1.jpg';
	imgs[1] = new Image();
	imgs[1].src = '/images/pics/mycar2.jpg';
	imgs[2] = new Image();
	imgs[2].src = '/images/pics/mycar3.jpg';
	imgs[3] = new Image();
	imgs[3].src = '/images/pics/mycar4.jpg';
	imgs[4] = new Image();
	imgs[4].src = '/images/pics/mycar5.jpg';
        //. . . and the rest of the images
        
window.onload = function(){ imgChange(); };  
