diff --git a/system/libraries/Hooks.php b/system/libraries/Hooks.php
index 69ca1a9..8767e10 100644
--- a/system/libraries/Hooks.php
+++ b/system/libraries/Hooks.php
@@ -40,7 +40,19 @@
 	function CI_Hooks()
 	{
 		log_message('debug', "Hooks Class Initialized");
-	
+		$this->_initialize();	
+	}
+  	
+	// --------------------------------------------------------------------
+
+	/**
+	 * Initialize the Hooks Preferences
+	 *
+	 * @access	private
+	 * @return	void
+	 */  	
+  	function _initialize()
+  	{
 		$CFG =& _load_class('Config');
 		
 		// If hooks are not enabled in the config file
@@ -63,8 +75,7 @@
 
 		$this->hooks =& $hook;
 		$this->enabled = TRUE;
-	}
-  	// END CI_Hooks()
+  	}
   	
 	// --------------------------------------------------------------------