$(document).ready(function() {
	$('.source').addClass('hideSource');

	$('h1').toggle(function() {
		$(this).next().slideDown("fast").end();
	}, function() {
		$(this).next().slideUp("fast").end();
	});
});
