$(document).ready(function() {
	$("#right a").click(function() {
		window.open($(this).attr("href"));
		return false;
	})
	$("#right ul,h1,#head,#books").hide();
	$("#right h3").css({cursor:"pointer"});
	
	$("h1").fadeIn(2000,function() {
		$("#books").fadeIn(2000,function() {
			$("#head").fadeIn(2000);
		});
	});
});

function s(id) {
	$("#right ul").hide();
	$("#section"+id+" ul").slideDown()
}