$(function(){
	
	
	$('.c-handler').css("cursor","pointer").next().hide();	
	
	var activeC = '';

	$('.c-handler').click(function(){
			$(this).next().animate({'height':'toggle','opacity':'toggle'});
			
			if ( activeC != '' && activeC != $(this).attr("id")){				
			  $('#'+activeC).next().slideUp();
			}
			activeC = $(this).attr("id");			
		});
	
	
});
