$(document).ready(function(){
	$("div#book_contents table").each(function(){
		$(this).find("tr:even").addClass("alt");
	});
	
	$("ul#menu li").hover(function(){
		if( !$(this).hasClass("selected") && $(this).children("ul").length == 1 ){
			$("ul#menu li.selected ul").hide();
			$(this).children("ul").show();
		}
		$(this).addClass("hovered");
	},function(){
		if( !$(this).hasClass("selected") && $(this).children("ul").length == 1 ){
			$("ul#menu li.selected ul").show();
			$(this).children("ul").hide();
		}
		$(this).removeClass("hovered");
	});
	
	$("a[rel=gall]").fancybox({
		'overlayOpacity': 0.8
	});
});