$(function(){
	$('#bookparts li > div').hover(function(){
		$(this).addClass('hover');
	}, function(){
		$(this).removeClass('hover');
	});
	
	$('#bookparts a.contents').click(function(){
		$(this).parent().next('ul.content').toggle(); return false;
	});
});

$(function(){
	$('#main.library .show-date .arrow-down').click(function(){
		$(this).next('.show-date-layer').show();
		return false;
	});
	$('#main.library .show-date .arrow-up').click(function(){
		$(this).parent('.show-date-layer').hide();
		return false;
	});
});

/*$(function(){
	$('.filter a').click(function(){
		var $li = $(this).parent();
		$li.toggleClass('opened');
		return false;
	});
});	*/

/*$(function(){
	if ($.fn.colorbox) {
		$('.story-foto a').colorbox({
			opacity: 0.5
		});
	}
});*/

