--- /Users/sal/Downloads/spritemenu/spritemenu.install
+++ spritemenu.install
@@ -12,54 +12,32 @@
  */
 function spritemenu_schema() {
   $schema['spritemenu'] = array(
-    'description' => t('Databasing storing menu item sprites.'),
+    'description' => 'Databasing storing menu item sprites.',
     'fields' => array(
       'mid' => array(
-        'description' => t('{menu}.mid ID'),
+        'description' => '{menu}.mlid ID',
         'type' => 'int',
         'not null' => TRUE,
       ),
       'path' => array(
-        'description' => t('TODO'),
+        'description' => 'TODO',
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
       ),
       'filepath' => array(
-        'description' => t('TODO'),
+        'description' => 'TODO',
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
       ),
-      'link' => array(
-        'description' => t('TODO'),
-        'type' => 'varchar',
-        'length' => 100,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'visited' => array(
-        'description' => t('TODO'),
-        'type' => 'varchar',
-        'length' => 100,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'hover' => array(
-        'description' => t('TODO'),
-        'type' => 'varchar',
-        'length' => 100,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'active' => array(
-        'description' => t('TODO'),
-        'type' => 'varchar',
-        'length' => 100,
-        'not null' => TRUE,
-        'default' => '',
+      'data' => array(
+        'type' => 'text',
+        'not null' => FALSE,
+        'size' => 'big',
+        'description' => 'A serialized array of CSS positioning and dimension information for link states.',
       ),
     ),
     'primary key' => array('mid'),
@@ -114,4 +92,7 @@
  }
 
  return $requirements;
+}
+
+function spritemenu_update_6100() {
 }
\ No newline at end of file
