$(document).ready(function(){
	$("h3 input:not(:checked)").parent().next().hide();
	$("h3 input").click(function(){
		if (this.checked==true){
			this.checked==false;
			$(this).parent().next().show('slow');
		}else{
			this.checked==true;
			$(this).parent().next().hide('slow');
		}
	});
});
