window.onload = init;
var listIndex = -1;


function init()
{
	
}

function testimonialsInit() {
	//slideshow wll run every 2 minutes
	
	setTimeout(advanceSlideShow,8000);       

}

function advanceSlideShow() {
	//init index
	
	//fade out the list
	$("#testimonialList").fadeOut(800,function() {
			//increment index						
			listIndex++;
			//set the new xpos
			var totalChildren = $("#testimonialList li").length;
			if (listIndex >= (totalChildren-1)) {
				//reset to 0
				var newPosNumber = 0;
				listIndex = -1;
			} else {
				//special case for IE6
				if (jQuery.browser.version == "6.0") {
					var newPosNumber = -599 - ((listIndex) * 599) + (listIndex * 50);	
				} else {
					var newPosNumber = -539 - ((listIndex) * 539) - (listIndex * 10);
				}
				
			}
						
			$("#testimonialList").css('left',newPosNumber+'px');
			//fade it in
			$("#testimonialList").fadeIn(800);
			setTimeout(advanceSlideShow,8000);
	});
	
}

function showFTPBreakout()
{
    document.getElementById('ftpBreakout').style.display = 'block';
}

function hideFTPBreakout()
{
    document.getElementById('ftpBreakout').style.display = 'none';
}
