var quote=new Array();
quote[0]='"Impact Computing have provided us with a complete and flexible service. It began with sound consultancy advice, carried on with the design and installation of a quality network and continues with an excellent level of support"\n
Michelle Mellor\n
Finance Director, Cummins Mellor Recruitment
';
quote[1]='"Impact Computing’s very competent, very professional and very effective technical support maintains the smooth running of our IT systems and facilitates the efficient running of the company."\nMargaret Scott\n
IT Manager, Pierce CA Ltd
';
quote[2]='"In 15 years of providing a professional service to our own clients, we have now found a company who is equally meticulous, reliable and proficient, to support all our IT requirements."\nAndrew Taylorson\n
Partner, Eckersley’s
';
quote[3]='"Thanks to the robust, reliable system created by Impact Computing, we now benefit from improved efficiency, communication and organisation. The centralisation of our data has tightened security & our backups are reliable & easy to manage."\nAmanda Stead\n
Manager, Ashworth Treasure Chartered Accountants
';
quote[4]='"Staff, based at a variety of locations around the county, can now work as if they were at head office. Our new system has made our operations so much more streamlined and efficient."\nTanja Willis\n
Finance Director, TEG Group PLC
';
quote[5]='"Thanks to the network that Impact Computing designed and installed for us, our business operations are now far more streamlined. The level of support is excellent and we have peace of mind that help is only a phone call away."\nSimon Cocker\n
Managing Director, VooDoo UK
';
var speed=12000; /*this is the time in milliseconds adjust to suit*/
var q;
var length = quote.length;
q = Math.floor(Math.random()*length)
function showQuote() {
document.getElementById("testimonial").innerHTML=quote[q];
q++;
if(q==quote.length) {
q=0;
}
}
setInterval('showQuote()',speed);