// JavaScript Document

$(document).ready(function() {
	
	$('.content, h1').hide();
	
	$('h1').fadeIn('slow');
	
	$('h1').click(function() {
		$(this).next().slideToggle('slow');
	});
						 
	
	
});
