$(document).ready(function() {
	
	$("h1").click(function () {
	  $("#contents").slideToggle("slow");
	});
	
	$("h2").click(function () {
	  $(this).parent().children(".entries").slideToggle("slow");
	});
	
	$("h3").click(function () {
		var parent = $(this).parent();
		var description = parent.children(".description");
		if (description.css("display") == "block")
		{
			parent.animate({ backgroundColor: "#FFFFFF" }, 1500);
		}
		else
		{
			parent.animate({ backgroundColor: "#EEEEEE" }, 1500);
		}
		description.slideToggle("slow");
	});


    $("#notice").animate({'right':'10px','opacity':1}, 3000);
	$("#notice").fadeOut(3000);
});

