// JavaScript Document

$( function() {
	
	//configuration options: http://jquery.malsup.com
	
	$('#show').cycle({
		pager:  '#pager',
   		fx: 'fade',
		speed:  800,
		pause: 1,
		timeout: 10000
	});
	
	//homepage chunks
	$('#content .row .chunk:nth-child(3n+3)').css({marginRight:0})
	
	//carousel (client logos)
	$(".carousel").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev",
		auto: 4000,
		speed: 800
	});
	
	//testing
	/*
	$('#logo').click( function() {
		var fx = prompt("Test effect:", "Type effect here");
		$('#show').cycle({
			pager:  '#pager',
			fx: fx, 
			speed:  300
		
		});
	})
	*/
	
})

