$(document).ready(function () {

	$('article').children().not('header').css('display', 'none');
	
	$('.current').children().slideDown();
	
	$('article:not(.current) h1').toggle(function(){
		header = $(this).parent();	
		$(header).parent().children().not(header).slideDown();
		}, function(){
		$(header).parent().children().not(header).slideUp();
	});
	
});
