var myquotes = new Array(
    'Dunblue have proven credibility, professionalism, technical ability and commitment|Finance Manager - Gressingham Foods',
    'We like that we get a solution and not just a call number when we need help|Finance Director - Suffolk Housing Association',
	'Dunblue understands our business requirements, so they can always offer the right IT solution|Director - Nnable Ltd',
    'Dunblue has always been flexible, available and highly knowledgeable|Director - The Blockfoil Group' // Leave the last quote without a comma at the end
    );

function rotatequote()
{
    thequote = myquotes.shift(); //Pull the top one
    myquotes.push(thequote); //And add it back to the end
    
	var quotetext = new Array();
	quotetext = thequote.split('|');
	
    document.getElementById('homebanner-quote').innerHTML = '&ldquo;' + quotetext[0] + '&rdquo;<p>' + quotetext[1] +'</p>' ;
    t=setTimeout("rotatequote()",10000);
}

// Start the first rotation.
rotatequote();

