$(document).ready(function() {
    $('#product-rotation').cycle({
		fx:				'scrollHorz',
		timeout:		12000,
		prev:			'#leftarrow.arrows', 
    	next:			'#rightarrow.arrows'
	});
	
	$('#product-preview').cycle({
		fx:				'fade',
		speed:			'fast',
		timeout:		0,
		pager:  		'#pager', 
	    pagerAnchorBuilder: function(idx, slide) { 
		// return selector string for existing anchor 
        return '#pager li:eq(' + idx + ') a'; 
	    }
	});
});
