$(document).ready(function(){
	
	$("#project-slider-wrap").jCarouselLite({
		btnNext: "#next",
		btnPrev: "#back",
		circular: true,
		easing: "easeInOutQuad",
		speed: 900
	});
	
	$("#panel, .panel").toggle(function(){
		if( this.id == "panel" ){ var height_is = "200px"; }
		else{ var height_is = "160px"; }
		$(this).animate({ height: height_is	}, 1000, "easeInQuint");
		$(this).find('h2 a').addClass('act');
		$(this).css('cursor','pointer');
	},function(){
		if( this.id == "panel" ){ var height_is = "36px"; }
		else{ var height_is = "26px"; }
		$(this).animate({ height: height_is }, 1000, "easeInQuint");
		$(this).find('h2 a').removeClass('act');
	});
	
	$("div.feat-article-content").find('p').not(".first, .cont-reading").css('display','none');
	$("div.feat-article-content").find('p.first').append('..');
	$("p.cont-reading").css('display','block');
});