diff --git a/sites/all/modules/blockquote/blockquote.module b/sites/all/modules/blockquote/blockquote.module
index d8a6ab8..4ec54de 100644
--- a/sites/all/modules/blockquote/blockquote.module
+++ b/sites/all/modules/blockquote/blockquote.module
@@ -74,9 +74,12 @@ function blockquote_filter($op, $delta = 0, $format = -1, $text = '') {
 }
 
 /**
-* Implementation of hook_init()
+* Implementation of hook_menu()
 */
-function blockquote_init() {
-  drupal_add_css(drupal_get_path('module', 'blockquote') .'/blockquote.css');
-  if (variable_get('theme_default', '') != 'garland') drupal_add_css(drupal_get_path('module', 'blockquote') .'/blockquote-neutralise.css', 'theme');
+function blockquote_menu($may_cache) {
+  if (!$may_cache) {
+    drupal_add_css(drupal_get_path('module', 'blockquote') .'/blockquote.css');
+    if (variable_get('theme_default', '') != 'garland') drupal_add_css(drupal_get_path('module', 'blockquote') .'/blockquote-neutralise.css', 'theme');
+  }
 }
+
