$(document).ready(function() {
	// ACCORDION
	$('.accItems').kwicks({
		max: 600,
		spacing:  0,
		duration: 1000,
		easing: 'easeOutQuad'
	});
	
	$('.accItems li:first-child .shadow').css({'background':'none'});
	
	$('.accItems li:eq(0) .itemContent').css('background-position','0 0');
	$('.accItems li:eq(1) .itemContent').css('background-position','0 -87px');
	$('.accItems li:eq(2) .itemContent').css('background-position','0 -174px');
	$('.accItems li:eq(3) .itemContent').css('background-position','0 -261px');
	
});

