({"quotes":
 [

		{
		"quote" : "A big thank you to everyone at Expressway Signs who was involved with this project, for their patience, professionalism, flexibility, and dedication to ensuring that the finished product, met all of our expectations. <br/><br/> Creating a perfect 'welcome' area for Skyrail's guests and visitors.",
		"author" : "Julie Bosanquet - Skyrail"
	},
	
	{
		"quote" : "Firstly I would like to thank all those individuals that worked on the car sticker's for Destination Cairns Magazines. <br/><br/>Secondly I would like to let you all know that we were impressed with the service you all provided us.",
		"author" : "Sarelle - Destination Cairns Magazine"
	},
	
	{
		"quote" : "Our manager Cliff Jones took time out at a function we were attending to personally thank me for a job well done and said how impressive the signs looked. <br/><br/>So once again thanks to you and your team, I hope we find the opportunity to work together again in the future.  ",
		"author" : "David Black - Ergon Energy"
	},
	

	
]
 })

var quotes = [], authors = [];
quotes[0] = "Dear Expressway team, <br/><br/> Thank you very much for all the efforts of the Expressway Signs team with our recent building extensions at Caravonica Terminal.<br/><br/>We could not be happier with the finished product, which is both eye-catching and professionally finished.";
authors[0] = "Julie Bosanquet - Skyrail";

quotes[1] = "Dear Expressway Signs Staff, <br/><br/> A big thank you for the signage you prepared and fitted for our building. Steve is an asset to your company, I found him to be cooperative, polite, safety conscious and certainly a willing worker.";
authors[1] = "David Black - Ergon Energy";

quotes[2] = "To the Expressway Signs team, <br/><br/>Allow me to thank you and express my extreme satisfaction with the recent upgrade of Carlton outdoor illuminated signage in the Northern Territory.<br/><br/> Placement of all signage will enhance Carlton's profile even further, increasing sales and profits.<br/><br/>";
authors[2] = "B C Moore - Manager NT BREWERY PTY";

quotes[3] = "Simply outstanding! <br/><br/>Please go ahead and make those up for us!<br/><br/>They are wonderful!<br/><br/>Thank you.<br/><br/>";
authors[3] = "Tim White -  James Cook University";

quotes[4] = "Dear Expressway team,<br/><br/>We have really appreciated the patience and personal attention.<br/><br/>Thank you.<br/><br/>";
authors[4] = "Geoff and Nikki Bishop";

quotes[5] = "Dear Expressway Signs,<br/><br/>Thanks for your prompt attention and all your help and support.<br/><br/>";
authors[5] = "Darryl Martin - QR Passenger Pty Ltd";

quotes[6] = "Hi Team,<br/><br>/The sign looks fantastic, now people can find us! Cheers, <br/><br/>";
authors[6] = "J. Norman - Trinity Cove Apartments";

var qtimer = 11000, qindex= 0, qtime;
function runQuotes(){
	if(qindex == 7) qindex = 0;
	var self = this;
	qtime = setTimeout(function(){
			var quote = quotes[self.qindex];
			var author = authors[self.qindex];
			var qhtml = quote + "<div id='author'>" + author + "</div>";
		       document.getElementById('quotes').innerHTML = qhtml;
		       self.qindex++;
		       runQuotes();
		       }, qtimer);
	
		
}

setTimeout(function(){ runQuotes(); document.getElementById('quotes').innerHTML = quotes[2] + "<div id='author'>" +  authors[2] + "</div>"; }, 1000);

