? .DS_Store
? sites/default/settings.php
Index: themes/garland/page.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/page.tpl.php,v
retrieving revision 1.33
diff -u -p -r1.33 page.tpl.php
--- themes/garland/page.tpl.php	15 Sep 2009 17:10:39 -0000	1.33
+++ themes/garland/page.tpl.php	17 Sep 2009 14:01:35 -0000
@@ -1,6 +1,11 @@
 <?php
 // $Id: page.tpl.php,v 1.33 2009/09/15 17:10:39 webchick Exp $
 ?>
+
+  <div id="skip-link">
+    <a href="#main-content"><?php print t('Skip to main content'); ?></a>
+  </div>
+
   <div id="header-region" class="clearfix"><?php print render($page['header']); ?></div>
 
   <div id="wrapper">
@@ -32,6 +37,7 @@
       <div id="center"><div id="squeeze"><div class="right-corner"><div class="left-corner">
           <?php print $breadcrumb; ?>
           <?php if ($page['highlight']): ?><div id="highlight"><?php render($page['highlight']); ?></div><?php endif; ?>
+          <a name="main-content" id="main-content"></a>
           <?php if ($tabs): ?><div id="tabs-wrapper" class="clearfix"><?php endif; ?>
           <?php if ($title): ?><h2<?php print $tabs ? ' class="with-tabs"' : '' ?>><?php print $title ?></h2><?php endif; ?>
           <?php if ($tabs): ?><ul class="tabs primary"><?php print $tabs ?></ul></div><?php endif; ?>
Index: themes/garland/style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/style.css,v
retrieving revision 1.64
diff -u -p -r1.64 style.css
--- themes/garland/style.css	31 Aug 2009 17:40:03 -0000	1.64
+++ themes/garland/style.css	17 Sep 2009 14:01:35 -0000
@@ -291,6 +291,26 @@ table .form-button, table .form-submit {
 }
 
 /**
+ * Skip navigation
+ */
+#skip-link a:link, #skip-link a:visited {
+  height: 1px;
+  overflow: hidden;
+  position: absolute;
+  top: -999em;
+}
+
+#skip-link a:active, #skip-link a:focus {
+  background: #fff;
+  height: auto;
+  overflow: visible;
+  position: fixed;
+  top: 0;
+  width: auto;
+  z-index: 1000;
+}
+
+/**
  * Layout
  */
 #header-region {
Index: themes/seven/page.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/seven/page.tpl.php,v
retrieving revision 1.4
diff -u -p -r1.4 page.tpl.php
--- themes/seven/page.tpl.php	15 Sep 2009 17:10:39 -0000	1.4
+++ themes/seven/page.tpl.php	17 Sep 2009 14:01:36 -0000
@@ -1,6 +1,10 @@
 <?php
 // $Id: page.tpl.php,v 1.4 2009/09/15 17:10:39 webchick Exp $
 ?>
+  <div id="skip-link">
+    <a href="#main-content"><?php print t('Skip to main content'); ?></a>
+  </div>
+
   <div id="branding" class="clearfix">
     <?php print $breadcrumb; ?>
     <?php if ($title): ?><h1 class="page-title"><?php print $title; ?></h1><?php endif; ?>
@@ -20,6 +24,7 @@
         </div>
       <?php endif; ?>
       <?php if ($action_links): ?><ul class="action-links"><?php print $action_links; ?></ul><?php endif; ?>
+      <a name="main-content" id="main-content"></a>
       <?php print render($page['content']); ?>
     </div>
 
Index: themes/seven/style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/seven/style.css,v
retrieving revision 1.18
diff -u -p -r1.18 style.css
--- themes/seven/style.css	11 Sep 2009 13:48:44 -0000	1.18
+++ themes/seven/style.css	17 Sep 2009 14:01:36 -0000
@@ -251,6 +251,26 @@ ul.secondary li.active a.active {
 }
 
 /**
+ * Skip navigation
+ */
+#skip-link a:link, #skip-link a:visited {
+  height: 1px;
+  overflow: hidden;
+  position: absolute;
+  top: -999em;
+}
+
+#skip-link a:active, #skip-link a:focus {
+  background: #fff;
+  height: auto;
+  overflow: visible;
+  position: fixed;
+  top: 0;
+  width: auto;
+  z-index: 1000;
+}
+
+/**
  * Page layout.
  */
 #page {
