function startup()

{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = '"Willow Starcom  demonstrated impressive levels of expertise, professionalism and committment"';
	Quotation[1] = '"A refreshing change to find people who just got on with the job in hand and were so practical"';
	Quotation[2] = '"Willow Starcom saved us 4 days in manpower, we would recommend their services to any business"';
	Quotation[3] = '"The team were very professional and following the visit a full written report was provided, which then allowed us to focus on the key areas identified"';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('testimonials').innerHTML = Quotation[which];
}














































