$(document).ready(function() {
	
	// Slideshow for client quotes			
	$('#clientQuotes').innerfade({
		speed: 1000,
		timeout: 7000,
		type: 'random_start',
		containerheight: '146px'
	});
	
	// Carousel for client logos
	var randomStart=Math.floor(Math.random() * ($('#logoBox li').length + 1));
	
	$('<a href="" id="logoPrev"></a><a href="" id="logoNext"></a>').insertAfter('#logoBox');
	$('#logoBox').jCarouselLite({
		btnNext: "#logoNext",
		btnPrev: "#logoPrev",
		//auto: 5000,
		speed: 1000,
		visible: 5,
		easing: "easeOutBounce",
		scroll: 5,
		start: randomStart
	});
	
});