$(document).ready(function() {
	$('#holder').jScrollHorizontalPane({showArrows:true, scrollbarHeight:18, dragMinWidth:45, dragMaxWidth:45, scrollbarMargin:0, arrowSize:18}); 
	
	//actionRotate();
	
	$('#productwrapper ').autocontentslider({types:'div',shown:3,size:290});
});

function actionRotate() {
	var cnt = $('.action-product').length;
	
	if (cnt > 3) {
		$('.action-product').each(function(index) {
			var left = parseFloat($(this).css('left'));
			if (left < 0) {
				$(this).css('left', (cnt - 1) * 290 + 'px');
			}
		});
		
		$('.action-product').animate({
			opacity: '1'
		}, 3000);
		$('.action-product').animate({
			left: '-=290'
		}, 1000, 'linear', actionRotate);
	}
}
