var quotes = new Array();
var current_quote = 0;
var quote_delay = 30 * 1000; // 30 seconds

function SetupQuotes()
{
	var i = 0;

	quotes[i++] = 'Tandem Financial Solutions offer a "person-centred approach to resolving financial problems. It is second to none!"<br /><div align=right>- Mr P, Salford&nbsp;&nbsp;</div>';
	quotes[i++] = '"Thank-you very much for all your help, your support and the assurance you have given me"<br /><br /><div align=right>- Mrs K, London&nbsp;</div>';
}

function SwapQuote() 
{
	current_quote = (current_quote + 1) % quotes.length;
	document.getElementById("span_quote").innerHTML = quotes[current_quote];
}

SetupQuotes();