Quickie: Only show Drupal's "Book Navigation" block on Book pages:
1) Go to admin/build/block/configure/book/0
2) "Page specific visibility settings" -> "Show if the following PHP code returns TRUE (PHP-mode, experts only)."
3) Insert the following:
<?php
$is_book=db_result(db_query('select 1 from {book} where nid=%d',arg(1)));
return $is_book;
?>