$(function(){
	// This code will be run when the document is ready
	$("article").children(":not(header)").hide()
	
	$("article header a").toggle(function(){
	    $(this).parents("article").children(":not(header)").slideDown("slow");
	    return false;
	}, function(){
	    $(this).parents("article").children(":not(header)").slideUp("slow");
	    return false;
	});
});


/* Version 1:
$(function(){
	// This code will be run when the document is ready
	$("article").children(":not(header)").hide()
	
	$("article header a").click(function(){
	    $(this).parents("article").children(":not(header)").slideDown("slow");
	    return false;
	});
});
*/

