
$(function() {
    $('#items_items').cycle({
        fx: 'fade',
        speed: 500,
        timeout: 6000,
        sync: false,
        pager: '#items_belly_pager',
		pagerAnchorBuilder: function(idx, slide) { 
        return '<a href=""><img src="' + slide.src + '" width="59" height="35" alt="" /></a>'; 
    	},
		before: function () {
            $('#items_belly_content').html($('#'+this.id+'-content').html());
        }
    });

});




