var CurSld = 1;

	var TxtLst = [];
		TxtLst[TxtLst.length] = 'fresh frozen';
		TxtLst[TxtLst.length] = 'consistent';
		TxtLst[TxtLst.length] = 'appetising';
		TxtLst[TxtLst.length] = 'exceptional';
		TxtLst[TxtLst.length] = 'there';

	$(function() {
	
		setInterval("switchText()",6000);
	
	});
	
	function switchText() {
	
		$('.header > h4 > span').fadeOut(2000, function() {
			
			// Animation complete.
		
			$('.header > h4 > span').html( TxtLst[CurSld] );
			
			$('.header > h4 > span').fadeIn(2000, function() {
			
				// animation complate
				
				CurSld++;
				
				if (CurSld >= TxtLst.length) { CurSld = 0; }
			
			});
		
		});
	
	}
