diff -r 2f1a308c4c11 -r 9761ee24f31d vendor/plugins/redmine_bibliography/app/views/settings/_bibliography.rhtml
--- /dev/null
+++ b/vendor/plugins/redmine_bibliography/app/views/settings/_bibliography.rhtml
@@ -0,0 +1,3 @@
+<p><label>Menu caption</label>
+<%= text_field_tag 'settings[menu]', @settings['menu'], :size => 30 %>
+<br /><em>Clear this field if you don't want to add a tab to the project menu</em></p>
diff -r 2f1a308c4c11 -r 9761ee24f31d vendor/plugins/redmine_bibliography/init.rb
--- a/vendor/plugins/redmine_bibliography/init.rb
+++ b/vendor/plugins/redmine_bibliography/init.rb
@@ -1,9 +1,9 @@
 require 'redmine'
 require 'dispatcher'
 
+RAILS_DEFAULT_LOGGER.info 'Starting Bibliography Plugin for RedMine'
 
 # Patches to the Redmine core.
-
 Dispatcher.to_prepare :redmine_model_dependencies do
   require_dependency 'project'
 
@@ -12,23 +12,25 @@
   end
 end
 
+
+# Plugin Info
 Redmine::Plugin.register :redmine_bibliography do
   name 'Redmine Bibliography plugin'
   author 'Chris Cannam, Luis Figueira'
-  description 'This is a plugin for Redmine'
+  description 'This is a bibliography management plugin for Redmine'
   version '0.0.1'
   url 'http://example.com/path/to/plugin'
   author_url 'http://example.com/about'
-  
-  permission :view_bibliography, :redmine_bibliography => :index
 
-  menu :project_menu, :redmine_bibliography, {:controller  => 'publications', :action => 'index'}, :caption  => 'Bibliography', :after => :activity, :param => :project_id
+  settings :default => { 'menu' => 'Bibliography' }, :partial => 'settings/bibliography'
 
+  project_module :redmine_bibliography do
+    permission :publications, { :publications => :index }, :public => true
+    permission :edit_redmine_bibliography, {:redmine_bibliography => [:index, :edit]}
+  end
 
-
-
-
-
-end
-
-
+  # extending the Project Menu
+  menu :project_menu, :publications, { :controller => 'publications', :action => 'index', :path => nil }, :after => :activity, :caption => Proc.new { Setting.plugin_redmine_bibliography['menu'] },
+   :if => Proc.new { !Setting.plugin_redmine_bibliography['menu'].blank? }
+    
+end
\ No newline at end of file
