// JavaScript Document

$(function() {
	$("h2, h3").addClass("clickable");
	
	$("h2, h3").click(function() {
			$(this).next().toggle('blind', 'slow');
			return false;	
		 }).next().hide();
});
