$(document).ready(function() {
	$('#info').removeClass('hidden');
	$('#box_full').find('p, ul').hide().end().find('h2').click(function () {
		$(this).next().slideToggle();
	});
});