	$(document).ready(function(){
		$('#home-slider')
			.cycle({
				fx: 'fade',
				speed: 1000,
				timeout: 6000,
				fit: true,
				pause: true,
				pager: '.nav-thumbs',
				pagerEvent: 'click',
				pauseOnPagerHover: true,
				// callback fn that creates a thumbnail to use as pager anchor 
   				pagerAnchorBuilder: function(idx, slide) {
   				var src = $('img',slide).attr('src');
				return '<li><a href="' + src + '"><img src="' + src + '" width="50" height="27"/></a></li>'; 
    			}
			});
			
	});