$(".Book-List > li").hover(
  function () {
    $(this).addClass("hover");
  },
  function () {
    $(this).removeClass("hover");
  }
);

$(".logo").hover(
  function () {
	$(".menu").addClass("hover");
	
		$(".menu").hover(
		  function () {
		    $(this).addClass("hover");
		  },
		  function () {
		    $(this).removeClass("hover");
		  }
		)
		
  },
  function () {
		    $(this).removeClass("hover");
		  }
);

$(".Book-I-Am-Reading").hover(
  function () {
    $(this).addClass("hover");
  },
  function () {
    $(this).removeClass("hover");
  }
);

