﻿$(function() {
	$("#foo1").carouFredSel({
		scroll: 1000
	});

	$("#foo2").carouFredSel({
		scroll	: 1000,
		circular: false,
		infinite: false,
		auto	: false,
		prev 	: {	
			button	: "#foo2_prev",
			key		: "left"
		},
		next 	: { 
			button	: "#foo2_next",
			key		: "right"
		},
		pagination: "#foo2_pag"
	});
	$("#testimonials").carouFredSel({
		direction	: "up",
		items		: 1,
		height		: 250,
		padding		: 'auto',
		auto		: 5000
	});
	$('.fx-carousel h4').show().parent().carouFredSel({
		width: 550,
		height: 125,
		auto: {
			fx: 'crossfade',
			onAfter: function( oI, nI ) {
				$(this).trigger('configuration', ['auto.fx', nI.next().attr('class'), false]);
			}
		}
	});
});
