$(document).ready(function(){
	$("#galleryControls h3").after('<ul id="thumbs">');
	$('#slides').cycle({ 
	    fx:     'fade',
	    speed:  'slow', 
	    timeout: 0, 
	    pager:  '#thumbs', 

	    // callback fn that creates a thumbnail to use as pager anchor 
	    pagerAnchorBuilder: function(idx, slide) { 
	        return '<li><a href="#"><img src="' + slide.src + '" width="220"  /></a></li>'; 
	    } 
	});
	
	$("#thumbs li").hover(function(){
		$(this).addClass("hover");
		$(this).find("a").stop().animate({height: 68, width: 68, marginTop: 1}, 'fast');
		}, function() {
		$(this).removeClass("hover");
		$(this).find("a").stop().animate({height: 64, width: 64, marginTop: 3}, 'fast');
	});
	
});