window.onload = init;
var listIndex = -1;

function init()
{

}


/*Added for News Rotation*/
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 = -15;
				listIndex = -1;
			} else {
				//special case for IE6
				if (jQuery.browser.version == "6.0") {
					var newPosNumber = -617 - ((listIndex) * 617) + (listIndex * 50);	
				} else {
					var newPosNumber = -557 - ((listIndex) * 557) - (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';
}
