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