$(function() {
    $('#slider').cycle({
        fx:     'fade',
        speed:   800, 
        timeout: 8000,
		next:   '#btn-next', 
		prev:   '#btn-prev',
        pager:  '#pagi',
        pagerAnchorBuilder: function(idx, slide) {
            return '#pagi li:eq(' + (idx) + ') a';
        }
    });
	
	 $('#head').cycle({
        fx:     'fade',
        speed:   800, 
        timeout: 8000
    });
});
