$(document).ready(function(){
	$('div.box:not(.full) > h1').click(function(){
		$(this).toggleClass('active');
		
		if ($(this).hasClass('active'))
			$(this)
				.next().fadeIn(1000)
				.next().fadeOut(1000);
		else
			$(this)
				.next().fadeOut(1000)
				.next().fadeIn(1000);

	});
});
