quotes= []; 
k = 0;

quotes[k++] = "CAE has provided Weston College with a first class, professional outsourced support service. The savings against in-house staff and administration for IT have been around 25%. // ICT Manager,<br />Weston College";

quotes[k++] = "CAE consistently exceed my expectations on what can be achieved within both timescale and cost. Irrespective of the technology and size of order the approach is always to make my life easier and long may this continue. // Network Manager,<br />River Island";

quotes[k++] = "CAE do more than just supply. It is the application of technical expertise to our business requirements that really impresses. // Operations Manager,<br /> Head of MIS, British Red Cross";

quotes[k++] = "I am extremely happy with CAE. They supply us IT kit from servers, desktops to Cisco IPT and support - a great 1 stop shop and trusted partner! // Head of IT,<br />Leading Commercial Leader";

quotes[k++] = "Keep up the good work; you are the best channel partner I have ever worked with. // Operations Manager,<br />MTV Networks Europe";

quotes[k++] = "CAE has been a very successful partner for us - keen costs, a professional sales service and the ability to deliver. // Head of IT Infrastructure,<br /> International Investment Bank";

quotes[k++] = "It's a pleasure to do business with CAE - a company who are there when you need them, don't continually pester you to buy more and more services; always helpful and consistently competitive on price. // Deputy Director Network Services,<br />University of Oxford Division of Medicine";

quotes[k++] = "By ensuring staff are trained and certified to the highest levels, CAE has demonstrated that attention to detail and going the extra mile achieves fantastic customer retention, great results, and most importantly great customer satisfaction. // Cisco Vice President,<br />United Kingdom & Ireland";

quotes[k++] = "It is very rare that I do not have at least one suggestion for a way in which a supplier should improve their service, but in the case of CAE I am left with nothing to say. // IT Manager,<br />GAB Robins";

quotes[k++] = "The consistently high standard of end result for every project gives us great confidence in working with CAE. The sales and services teams really pull together and allow us to achieve the exceptional results only a real partnership can bring. // Head of IT Logistics,<br />Thomas Cook";

quotes[k++] = "CAE have been exceptional. I have tested the company’s services exceptionally hard and feel that they have proved themselves as reliable as the Cisco products they install. Probably the best company I’ve had the good fortune to deal with. // IT Manager,<br />St Peter’s College Oxford";
 
$.quotes = { count: k };
$.quotes.sw = function(){
		var i = Math.floor(Math.random()*($.quotes.count+1));
		var text = quotes[i];
		if ( !text ) $.quotes.sw();
		var t = text.split("//");
		var c = t[0];
		var a = t[1];
		$("#quotes").fadeOut("medium",function(){
			$(".content", this).html(c);
			$(".speaker", this).html(a);
			$(this).fadeIn("medium");
		})
	};

$.quotes.timeoutid = window.setInterval($.quotes.sw, 10000);
$("body").fadeTo(0.999,"fast");