$(function() {
    $('#homepagecycler').after('<div id="nav" class="nav">').cycle({
        fx:     'scrollHorz',
        speed:  600,
        timeout: 8000,
        pager:  '#nav',
        containerResize: 0,
        pauseOnPagerHover: 1,
        pagerAnchorBuilder: function(idx, slide) { 
                //TODO: Point at the right graphic
                return '<a href="#">&nbsp;</a>'; 
        }
    });
});


