jQuery(document).ready(function($) {
    $('.article').hide();
	$('.section h2').click(function() {
		$('.section h2').removeClass('on');
		$('.article').slideUp('slow');
		if($(this).next().is(':hidden') == true) {
			$(this).addClass('on');
			$(this).next().slideDown("slow");
			}
	});
	$('.close').click(function() {
		$('.article').slideUp('fast');
	});
})(jQuery);