// 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/YouTube.jpg",
		quote:	"We now have our own channel on YouTube, the video sharing website. This features our Tenant Handbook DVD and 'Vision and values' video. Click <a href='http://www.youtube.com/acishousing' target='_blank'>here</a> to visit our YouTube channel and view our videos.",

		author:	""
	},
	{
		image:	"/Acis/images/testimonial/3.jpg",
		quote:	"Our Customer Contact Centre is supported by trained Customer Service Advisors who are waiting to take your call. Contact us on freephone 0800 027 2057 with your query and we will be happy to help.",
		author:	""
	},
	{
		image:	"/Acis/images/testimonial/1.jpg",
		quote:	"Have your say and get involved! Resident involvement is important to Acis 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 or Rent to Home Buy with Acis may be for you. Click <a href='http://www.acisgroup.co.uk/main/newhome/' target='_blank'>here</a> for more information.", 
		author:	""
	},
	{
		image:	"/Acis/images/testimonial/STATUS survey.jpg",
		quote:	"As an Acis tenant or customer, it is important that you can see how we are performing as an organisation. Click <a href='http://www.acisgroup.co.uk/main/news/performance.htm' target='_blank'>here</a> to view our latest performance figures.",
		author:	""
	},
	{
		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/1.jpg",
		quote:	"We have a number of resident groups across a range of locations, and are a great way to get involved with us. Find out more by checking out our Latest News section. Click <a href='http://www.acisgroup.co.uk/main/have-your-say/residentgroups.htm' target='_blank'>here</a> for more information.",
		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);

}
