diff --git a/accessible_fix/accessible_fix.module b/accessible_fix/accessible_fix.module
index a1dcc55..b2572bd 100644
--- a/accessible_fix/accessible_fix.module
+++ b/accessible_fix/accessible_fix.module
@@ -26,8 +26,6 @@ function accessible_fix_theme_registry_alter(&$theme_registry) {
 
 
   $params = array(&$theme_registry);
-  require_once(drupal_get_path('module', 'accessible_fix') .'/theme_overrides/common/template.inc');
-  call_user_func_array('accessible_fix_common_theme_registry_alter', $params);
 
   $theme_path = drupal_get_path('module', 'accessible_fix') .'/theme_overrides/'. $theme_key;
   if (file_exists($theme_path)) {
diff --git a/accessible_fix/theme_overrides/common/menu_link.tpl.php b/accessible_fix/theme_overrides/common/menu_link.tpl.php
deleted file mode 100644
index a34c135..0000000
--- a/accessible_fix/theme_overrides/common/menu_link.tpl.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-/* Allow #fragment links to be placed in menus via `http://current/#fragment`  */
-
-$link = $variables['element'];
-
-if (empty($link['#localized_options'])) {
-    $link['#localized_options'] = array();
-}
-  if (strpos($link['#href'], 'http://current/#') === 0) {
-    $fragment = str_replace('http://current/#', '', $link['#href']);
-    $link['#localized_options']['fragment'] = $fragment;
-    $link['#localized_options']['external'] = TRUE;
-    $link['#href'] = '';
-  }
-print l($link['#title'], $link['#href'], $link['#localized_options']);
-
-
diff --git a/accessible_fix/theme_overrides/common/template.inc b/accessible_fix/theme_overrides/common/template.inc
deleted file mode 100644
index 88385f8..0000000
--- a/accessible_fix/theme_overrides/common/template.inc
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-
-
-/**
- * implements accessible_fix's extension of hook_theme_registry_alter().
- */
-function accessible_fix_common_theme_registry_alter(&$theme_registry) {
-
-  global $theme;
-  $theme_path = drupal_get_path('module', 'accessible_fix') .'/theme_overrides/common';
-    // garland breadcrumb fix
-  unset($theme_registry['menu_link']['function']);
-  $theme_registry['menu_link']['type'] = 'module';
-  $theme_registry['menu_link']['theme path'] = $theme_path;
-  $theme_registry['menu_link']['path'] = $theme_path;
-  $theme_registry['menu_link']['template'] = 'menu_link';
-
-
-}
