/*******************************************************************************
CYCLE HEADER PHOTOS
*******************************************************************************/
$('#photo-wide').cycle({
	fx:           'fade', // name of transition function 
	timeout:       6000,  // milliseconds between slide transitions (0 to disable auto advance) 
	speed:         3000,  // speed of the transition (any valid fx speed value) 
	width:        '1024px', // container width
	height:       '295px', // container height 
	fit:           1,     // force slides to fit container 
	after:   onAfter      // function to run
});
function onAfter() {
	$('#output').html("Current anchor: " + this.href);
}

