Index: tagadelic.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/tagadelic/tagadelic.module,v
retrieving revision 1.37
diff -u -F^f -r1.37 tagadelic.module
--- tagadelic.module	19 Jan 2007 16:09:13 -0000	1.37
+++ tagadelic.module	13 Mar 2007 01:57:55 -0000
@@ -17,9 +17,6 @@ function tagadelic_help($section) {
 function tagadelic_menu($may_cache) {
   $items = array();
 
-  $stylesheet = drupal_get_path('module','tagadelic') .'/tagadelic.css';
-  drupal_add_css($stylesheet, 'all');
-
   if ($may_cache) {
     $items[] = array(
       'path' => 'admin/settings/tagadelic',
@@ -54,6 +51,10 @@ function tagadelic_menu($may_cache) {
         'access' => user_access('access content'),
         'type' => MENU_SUGGESTED_ITEM);
     }
+  }      
+  else {
+    // We put this in !$may_cache so it's only added once per request
+    drupal_add_css(drupal_get_path('module','tagadelic') .'/tagadelic.css');
   }
   return $items;
 }
