jQuery().ready(function()
{
	$('#newsslide').cycle({ 
		fx:     'fade', 
		speed:  2000, 
		pager:  '.newsslide_thumbs',
    	timeout: 0,
		// callback fn that creates a thumbnail to use as pager anchor 
		pagerAnchorBuilder: function(idx, slide) { 
			src = slide.src.replace('large', 'mini');
			return '<a href="#"><img src="' + src + '" width="30" height="30" /></a>'; 
		} 
	});
});
