
var int=self.setInterval("switchComment()",8000);

var no_of_testimonials=11;
var this_testimonial=0;


var testimonial_id_array = new Array();

testimonial_id_array[0] = 9;

testimonial_id_array[1] = 10;

testimonial_id_array[2] = 5;

testimonial_id_array[3] = 1;

testimonial_id_array[4] = 6;

testimonial_id_array[5] = 8;

testimonial_id_array[6] = 2;

testimonial_id_array[7] = 11;

testimonial_id_array[8] = 4;

testimonial_id_array[9] = 7;

testimonial_id_array[10] = 3;


function switchComment() {
	if (this_testimonial>=no_of_testimonials) { this_testimonial=0; }
	//testimonial_url="/_testimonial.php?testimonial_id="+testimonial_id_array[this_testimonial];
	testimonial_id="testimonial_"+testimonial_id_array[this_testimonial];
	//alert(testimonial_id);
	xFadeImage(testimonial_id);
	this_testimonial+=1;
}

function pauseComments(controller_id) {
	clearInterval(int);
	//window.thecontrollerid=controller_id;
	document.getElementById(controller_id).innerHTML = '<a href="javascript:restartController(\''+controller_id+'\')" class=\'nounderline\'>[play]</a>';
	
}

function restartController(controller_id) {
	switchComment();
	var int=self.setInterval("switchComment()",8000);
	document.getElementById(controller_id).innerHTML = '<a href="javascript:pauseComments(\''+controller_id+'\')" class=\'nounderline\'>[pause]</a>';
}

