// Edit these arrays to set the content to switch between
var testimonials = [

	{
		image:	"/Acis/images/testimonial/1.gif",
		quote:	"To view the website of the Tenant Services Authority (TSA), the organisation that regulates Acis and other providers, please<a href='http://www.tenantservicesauthority.org' target='_blank'> click here </a>.",


		author:	""
	},	{		image:	"/Acis/images/testimonial/10.jpg",
		quote:	"The 2010 Garden Competition is now closed, judging to take place soon.",
		author:	""
	},
	{
		image:	"/Acis/images/testimonial/3.jpg",
		quote:	"Acis Group has a dedicated team of Customer Advisors to deal with your enquiries. Contact us on FREEPHONE 0800 027 2057.",
		author:	""
	},
	{
		image:	"/Acis/images/testimonial/4.jpg",
		quote:	"Have your say and get involved! Resident involvement is important to Acis Group and the more our customers get involved, the more improvements we can make to our services! There are loads of ways to get involved and have your say, so give us a call on FREEPHONE 0800 027 2057.",
		author:	""
	},
	{
		image:	"/Acis/images/testimonial/5.jpg",
		quote:	"Fancy getting a foot on the property ladder? Then Shared Ownership with Acis Group may be for you!", 
		author:	""
	},
	{
		image:	"/Acis/images/testimonial/edward.jpg",
		quote:	"My old home was terrible. We are so much better off in our new Acis home and are really happy. The unbelievable thing is that it&#146s actually cheaper here than in the old place!",
		author:	"Eddy from Lincoln"
	},
	{
		image:	"/Acis/images/testimonial/door 2 for website.jpg for page.jpg",
		quote:	"Looking for a new home? We currently have homes in Gainsborough and the surrounding area for rent. To view all properties available click <a href='http://www.acisgroup.co.uk/main/newhome/Homes+available+to+rent/' target='_blank'>here</a>.",
		author:	""
	},
	{
		image:	"/Acis/images/testimonial/comm.jpg",
		quote:	"Our ASB Unit is getting tough on anti-social behaviour as part of our commitment to improving our neighbourhoods. Find out more by checking out our Latest News section",
		author:	""
	}

];

var reload_interval = 12; // how often to change (in seconds)

// DO NOT EDIT BELOW THIS LINE!!!!
// -----------------------------------------------------------------------------

var testimonial;
var testimonialPlaceholder;
var customerName;

var current_testimonial = -1;

function randomTestimonial() {

	do {
		r = Math.floor(Math.random()*testimonials.length);
	} while (r == current_testimonial);

	testimonial.style.backgroundImage = "url(" + testimonials[r].image + ")";
	testimonialPlaceholder.innerHTML = testimonials[r].quote;
	customerName.innerHTML = testimonials[r].author;

	current_testimonial = r;

}

window.onload = function() {

	testimonial = document.getElementById("testimonial");
	testimonialPlaceholder = document.getElementById("testimonialPlaceholder");
	customerName = document.getElementById("customerName");

	randomTestimonial();
	setInterval(randomTestimonial, reload_interval * 1000);

}