//$("h3#section").next("ul").show();
//$("h3#rightsection").next("ul").show();
$(document).ready(function(){
	$("h3.head").click(function(){$(this).next("ul").slideToggle(); return false;});
	$("h3.lefthead").click(function(){$(this).next("ul").slideToggle(); return false;});
	$("p.year").click(function(){$(this).next("div.books").slideToggle(); return false;});
});