$('#slideshow').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 8000, 
    pager:  '#nav', 
    pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '#nav li:eq(' + idx + ') a'; 
    } 
});

$(document).ready(function(){
	$('#sponsors').cycle({
		fx: 'fade',
		timeout: 12000
	});
});