// JavaScript Document

var Quotes = new Array();
var Pick1;

function randQuote()
{
	Quotes[0] = '<em>"Since I have been using Simplify I have never had a problem with my money going in on time.That to me is simply the best thing for a Contractor.  To be paid on time all the time.Whenever I phone the staff are courteous and friendly and always willing to help."</em><p><strong>Andrew Geogeghan</strong></p>';
Quotes[1] = '<em>"I have been extremely happy with all of the services Simplify Business Ltd offers. I am kept well up to date with any changes, and the amount the company does to ensure accurate payment is received is exemplary. All in all an excellent service I would recommend to anyone."</em><p><strong>Anthony Shaw</strong></p>';
Quotes[2] = '<em>"I would like to point out that Simplify can help contractors greatly with their income and if any problems are encountered then a call to their office will rectify matters in a very short time."</em><p><strong>Paul Honey</strong></p>';
Quotes[3] = '<em>"&quot;...I always found you very helpful, explaining things very well to someone who had no idea firms such as yours existed.  Thank you.&quot;"</em><p><strong>Ian Bull, Vehicle Builder</strong></p>';
Quotes[4] = '<em>"I have been a contractor working through Simplify Business for 5 months and I am very happy with the service that they provide. The application process was very simple and straight forward. I am fully supported by my Account Manager who explained all elements of working for an umbrella company. Payments have always been accurate and on time and I feel confident in recommending Simplify Business to any contractors."</em><p><strong>Sean Wilkinson, LERL Assurance Engineer</strong></p>';


	Pick1 = parseInt(Math.random()*(Quotes.length));
	document.write('<div id="tquote">' + Quotes[Pick1] + '</div>');
	setInterval(changeQuote, 8000);
}

function changeQuote()
{
	if(Pick1 == (Quotes.length-1))
		Pick1 = 0;
	else
		Pick1 = Pick1+1;
	
	$("#tquote").fadeOut("fast", function() {
		$("#tquote").html(Quotes[Pick1]);								  
				$("#tquote").fadeIn("slow"); });
}