var comments = new Array(
	'Deepen your Catholic faith and expand your knowledge of the Eucharist!',
	'"This perspective sheds new light and excitement on the source and summit of our faith, <br>the Eucharist."',
	'"This Cup is the new Covenant." Luke 22:20',
	'"[Mike Fulmer] brings in the Scripture in a beautiful way as he offers this presentation on the Eucharist."',
	'You\'ll be blown away and wonder why you haven\'t heard this before!'
);
var current = 0;
var element = document.getElementById('Testimonials');
var text    = document.getElementById('TestimonialsTxt');

/* cross browser method to set opacity */
function setOpacity(level) {
    element.style.opacity = level;
    element.style.MozOpacity = level;
    element.style.KhtmlOpacity = level;
    element.style.filter = "alpha(opacity=" + (level * 100) + ");";
}

/* rotate and create timers to fade the testimonial in */
function fadeIn(){
    text.innerHTML = comments[current];
    current = (current + 1) % comments.length;
    for (i = 0; i <= 1.05; i = i + 0.05) {
        setTimeout("setOpacity(" + i + ")", i * 1000);
    }
    setTimeout(function(){element.style.filter = "none";},i * 1000);
    setTimeout("fadeOut()", 7000);
}

/* create timers to fade the testimonial away */
function fadeOut() {
    for (i = 0; i <= 1; i = i + 0.05) {
        setTimeout("setOpacity(" + (1 - i) + ")", i * 1000);
    }
    setTimeout("fadeIn()", 1000);
}

fadeIn(); 

