$(document).ready(function(){
	// redefine Cycle's updateActivePagerLink function 
	
	// Start the slides.
	$('#home_rotation')
	.cycle({ 
	    fx:     	'fade',
	    timeout:	7500,
	    pause:		true,
	    cleartype:	!$.support.opacity,  // true if clearType corrections should be applied (for IE) 
	    speed:		375,
	    pager:		'#banner-nav',
        pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        	return '#banner-nav li:eq(' + idx + ')'; 
    	}
	});
});