
$(document).ready(
		function(){
			$('#headerImages').innerfade({
				speed: 2000,
				timeout: 7000,
				type: 'sequence',
				containerheight: '220px'
			});
		}
	);
$(document).ready(
		function(){
			$('#headerImagesLeft').innerfade({
				speed: 2000,
				timeout: 7000,
				type: 'sequence',
				containerheight: '220px'
			});
			
		}
	);
$(document).ready(function() {
	setTimeout(startFade, 3000);
});

function startFade(){
	$(document).ready(function() {
		$("#right2").css("display","block");
		$('#headerImagesRight').innerfade({
			speed: 2000,
			timeout: 7000,
			type: 'sequence',
			containerheight: '220px'
		});
	    

	    
	});
}
