$(document).ready(function() {

	/* Client Carousel */

	$('#content .clients .clients-container').carousel({
		'loop' : true,
		'shown' : 3,
		'autoPlay' : true,
		'duration' : 1500,
		'autoPlayDuration' : 7000
	});


	/* Horizontal Accordion */

	var animating = false;

	$('#content .third').hover(function() {

		if (!animating && $(this).hasClass('inactive')) {

			animating = true;

			$('#content .third.active').animate({
				width: '200px'
			}, 500, 'easeInOutExpo');

			$('#content .third.active .content').fadeOut(300);

			$('#content .third').removeClass('active').addClass('inactive');
			$(this).addClass('active').removeClass('inactive');

			$(this).animate({
				width: '557px'
			}, 500, 'easeInOutExpo');

			$(this).children('.content').delay(300).fadeIn(500, function() { animating = false; });

		}
	
	}, function() {});

	$('#content .third:first').addClass('active').removeClass('inactive');

	$('#content .third:first').animate({
		width: '557px'
	}, 500, 'easeInOutExpo');

	$('#content .third:first').children('.content').delay(300).fadeIn(500, function() { animating = false; });

});

