<!-- banner slider -->		
$(function() {
	$("#bannerSlider").carouFredSel({
		auto: true,
		width: 812,
		direction: "right",
		items: 1,
		  scroll: {
			easing: "linear",
			pauseOnHover: true,
			duration: 555,
			onBefore: function() {
			  $("#bannerSlider").animate("opacity", 0);
			},
			onAfter: function() {
			  $("#bannerSlider").animate("opacity", 1);
			}
		  },
		pagination : {
			container		: "#bannerSliderPagination",
			anchorBuilder	: function(nr) {
				return '<a href="#" class="pagination"><span></span></a>';
			}
		}
	});
});

<!-- product slider -->			
$(function() {
	$("#productSlider").carouFredSel({
		auto : true,
		width: 812,
		items: 3,
		scroll: {
			easing: "linear",
			pauseOnHover: true,
			duration: 555
		},
		prev : "#productSlider_prev",
		next : "#productSlider_next"
	});
});

<!-- text slider -->			
$(function() {
	$("#textSlider").carouFredSel({
		auto : true,
		width: 812,
		items: 1,
		scroll: {
			easing: "linear",
			pauseOnHover: true,
			duration: 444
		},
		direction: "right"
	});
});

