window.onload = randomImg;

var img = new Array("<p class='quote'>The advice and service we receive from the Industrial Audiometry Consultancy has been friendly, professional and good value. As a Company we require around 350 tests to be completed annually and are satisfied that the Industrial Audiometry Consultancy will continue to deliver a professional service and be our provider on an ongoing basis</p><p class='author'>John Stephenson, Group HR Manager, GB Industries Ltd</p>",
					"<p class='quote'>I am writing to express how happy we, as a company, have been with the service provided by IAC.  Initially I was hesitant to undertake Hearing Surveillance but due to legal requirements decided to go ahead.  The professional and efficient manner in which testing was carried out was excellent and I am very happy with the results obtained.  I would have no hesitation in using IAC's services in the future.</p><p class='author'>Dennis Shepherd, Hawthorn Timber Ltd</p>");
	
	
	
	function randomImg() {
		ranNum = Math.floor((Math.random() * img.length));
		document.getElementById("test").innerHTML = img[ranNum];
		 
		
	}
	
	
	
	
	
	
	
