$(function() {
    $('#banner').after('<ul id="imgnav">').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: '7000', 
    pager:  '#imgnav',
    // callback fn that creates a thumbnail to use as pager anchor 
    pagerAnchorBuilder: function(idx, slide) { 
        return '<li><a href="#">&nbsp;</a></li>'; 
    } 

});
$('#footslide #slides').cycle({
    fx:     'fade', 
    speed:  'slow', 
    timeout: '4000'
});

$('#nextbtn').click(function(){
	$('#footslide #slides').cycle('next');
});

$('#prevbtn').click(function(){
	$('#footslide #slides').cycle('prev');
});

});

