$(document).ready(function () {
	$('#blend_display').cycle({ 
	    fx:        'fade',
        direction: 'down',
        delay:    -2000,
        timeout: 0,
        cleartype:  1,
	    pager:  '#blend_list ul',
	     
	    // callback fn that creates a thumbnail to use as pager anchor 
	    pagerAnchorBuilder: function(idx, slide) { 
	        if (idx > 0)
	        	return '<li><a href="#">' + slide.title + '</a></li>';
	        else
	        	return '<li style="display: none"><a href="#">' + slide.title + '</a></li>'; 
	    } 
	});

});