$(function () {
    $('.cycle').after('<div id="points">').cycle({
        fx: 'scrollLeft',
        speed: 300,
        timeout: 0,
        pager: '#points',
        pagerAnchorBuilder: function(idx, slide) { 
            return '<a href="#"><img src="/media/images/point.gif" width="12" height="12" /></a>'; 
        }
    });
    
    $('.blend').cycle({
        fx: 'fade'
    });
});
