// JavaScript Document

$(document).ready(function () {
	$("#testimonials blockquote").not(":first").hide();
	
	var bgtotal=$("#testimonials blockquote").length;
	//bgfirst=bglast=2;
	var bgfirst=2;
	var bglast=1;
	
	
	
	intervalID=setInterval(function(){
		changeTestim();
	}, 6000);
	
	function changeTestim(){
		//alert(bgfirst);
		clearInterval(intervalID);
		//$("div.headerbg").eq(bgfirst-1).fadeIn(1500);
		//alert(bgfirst+" - "+bglast)
		$("#testimonials blockquote").eq(bglast-1).fadeOut(1500,function(){
			$("#testimonials blockquote").eq(bgfirst-1).fadeIn(1500);
			
			bglast=bgfirst;

				bgfirst++;
				//bglast--;


				if(bgfirst==(bgtotal+1)){
					bgfirst=1;
				}

				//if(bglast==4){
					//bglast=bgtotal;
				//}

			intervalID=setInterval(function(){
				changeTestim();
			}, 6000);

		});
	}
	
});
