Index: archive-handbook.php
===================================================================
--- archive-handbook.php	(revision 602)
+++ archive-handbook.php	(working copy)
@@ -7,6 +7,8 @@
 ?>
 <?php get_header(); ?>
 
+<?php get_sidebar( get_post_type() ); ?>
+
 <div class="sleeve_main">
 
 	<div id="main">
Index: footer.php
===================================================================
--- footer.php	(revision 602)
+++ footer.php	(working copy)
@@ -6,7 +6,12 @@
  */
 ?>
 
-	<?php get_sidebar( get_post_type() ); ?>
+	<?php
+		if (!is_page_template('single-handbook.php') && !is_page_template('archive-handbook.php')) {
+			get_sidebar( get_post_type() );
+		}
+	?>
+
 	<div class="clear"></div>
 
 </div> <!-- // wrapper -->
Index: single-handbook.php
===================================================================
--- single-handbook.php	(revision 602)
+++ single-handbook.php	(working copy)
@@ -7,6 +7,8 @@
 ?>
 <?php get_header(); ?>
 
+<?php get_sidebar( get_post_type() ); ?>
+
 <div class="sleeve_main">
 
 	<div id="main">
