// Settings - change as needed
var testimonial_time = 16; //seconds for each testimonial to display


// DO NOT CHANGE PAST THIS LINE
function setup() {
	testimonial_time = testimonial_time * 1000;
}

function hide_titles() {
	$('div[title]:not(.home_box_slide)').each(function() {
		var element = $(this);
		$.data(element, 'title', element.attr('title'));
		element.removeAttr('title');
	});
}

$(document).ready(function() {
	setup();
	hide_titles();
	$('#testimonials > .testimonial:first').show();
	$('#testimonials').cycle({pause: 1, timeout: testimonial_time});
});
