$(document).ready(function(){			
			
			$('#headerImage-home').cycle({
				timeout:5000,					
				speed: 1000,
				delay:  500,
				sync: 1,
				before: onBefore
			});
			
			function onBefore() { 
    			$('#caption-text').html(this.alt); 
			}
					
});
		
