$(document).ready(function() {
    $('#rotation').cycle({
		fx: 	'scrollHorz',
		speed:	700,
		timeout: 12000,
		next:   '#banners #next', 
		prev:   '#banners #prev',
		before: Title
	});
	
	function Title() {
		$('#captiontitle').html(this.title);
		$('#captionbody').html(this.alt);
	}
	
	$('#product-images').cycle({ 
	    fx:     'fade', 
	    speed:  'fast', 
	    timeout: 0, 
	    pager:  '#product-images-nav', 
	    pagerAnchorBuilder: function(idx, slide) { 
	        // return selector string for existing anchor 
	        return '#product-images-nav li:eq(' + idx + ') a'; 
	    } 
	});
	
});
