// JavaScript Document

$(document).ready(function() {
		
		$('#quote-holder').hide();
		$('#quote-holder').fadeIn(1000);
		
		//fade in quotes
		
		$('#quote-bg').hide();
		$(this).delay(1000,function(){	
			$("#quote-bg").fadeIn(1500);	
		});
		
		var maxCount= $('#quote-bg > *').length;
		var count=2;
		var previous=1;
		window.setInterval(function(){imageRotation();},4000); //animation speed this is set to 3.5 seconds at the moment
		
function imageRotation() {
		$('#image-'+previous).fadeOut(1500); //fade out speed this is set to 0.5 seconds at the moment
		$('#image-'+count).fadeIn(1500); //fade in speed this is set to 0.5 seconds at the moment
		previous = count;
		count ++;
		if(count==maxCount+1) {
			count=1;
		}
	};
});