$(function() {
	$(".range_slider").jCarouselLite({
		btnNext: ".range_next",
		btnPrev: ".range_prev",
		visible: 5
	});
});
		
$(function() {
	$(".element_slider").jCarouselLite({
		btnNext: ".element_next",
		btnPrev: ".element_prev",
		visible: 5
	});
});
		

		
$(function() {
	$(".accessory_slider").jCarouselLite({
		btnNext: ".accessory_next",
		btnPrev: ".accessory_prev",
		visible: 5
	});
});
		
$(function() {
	$(".cushion_slider").jCarouselLite({
		btnNext: ".cushion_next",
		btnPrev: ".cushion_prev",
		visible: 5
	});
});
		

$(document).ready(function(){
	$('img.captify').captify({
		// all of these options are... optional
		// ---
		// speed of the mouseover effect
		speedOver: 'fast',
		// speed of the mouseout effect
		speedOut: 'fast',
		// how long to delay the hiding of the caption after mouseout (ms)
		hideDelay: 500,	
		// 'fade', 'slide', 'always-on'
		animation: 'slide',		
		// text/html to be placed at the beginning of every caption
		prefix: '',		
		// opacity of the caption on mouse over
		opacity: '0.3',					
		// the name of the CSS class to apply to the caption box
		className: 'caption-bottom',	
		// position of the caption (top or bottom)
		position: 'bottom',
		// caption span % of the image
		spanWidth: '152px'
	});
});