Index: wp-content/themes/default/sidebar.php
===================================================================
--- wp-content/themes/default/sidebar.php	(revision 10850)
+++ wp-content/themes/default/sidebar.php	(working copy)
@@ -48,16 +48,20 @@
 			<?php } ?>
 
 			</li> <?php }?>
+			</ul>
+			<ul class="aria-navigation">
 
-			<?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
+				<?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
 
-			<li><h2>Archives</h2>
-				<ul>
-				<?php wp_get_archives('type=monthly'); ?>
-				</ul>
-			</li>
+				<li><h2>Archives</h2>
+					<ul>
+					<?php wp_get_archives('type=monthly'); ?>
+					</ul>
+				</li>
 
-			<?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?>
+				<?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?>
+			</ul>
+			<ul>
 
 			<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
 				<?php wp_list_bookmarks(); ?>
Index: wp-content/themes/default/page.php
===================================================================
--- wp-content/themes/default/page.php	(revision 10850)
+++ wp-content/themes/default/page.php	(working copy)
@@ -24,4 +24,4 @@
 
 <?php get_sidebar(); ?>
 
-<?php get_footer(); ?>
\ No newline at end of file
+<?php get_footer(); ?>
Index: wp-content/themes/default/js/aria-landmarks.js
===================================================================
--- wp-content/themes/default/js/aria-landmarks.js	(revision 0)
+++ wp-content/themes/default/js/aria-landmarks.js	(revision 0)
@@ -0,0 +1,8 @@
+$(document).ready(function() {
+		$("#header").attr("role","banner");
+		$("#content").attr("role","main");
+		$("#searchform").attr("role","search");
+		$("#sidebar").attr("role","complementary");
+		$("#footer").attr("role","contentinfo");
+		$(".aria-navigation").attr("role","navigation");
+});		
Index: wp-content/themes/default/header.php
===================================================================
--- wp-content/themes/default/header.php	(revision 10850)
+++ wp-content/themes/default/header.php	(working copy)
@@ -15,6 +15,7 @@
 <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
 <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
 
+
 <style type="text/css" media="screen">
 
 <?php
@@ -29,8 +30,9 @@
 </style>
 
 <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
-
+<?php wp_enqueue_script('jquery'); ?>
 <?php wp_head(); ?>
+<script type="text/javascript" src="<?php echo(get_bloginfo('template_directory')); ?>/js/aria-landmarks.js"></script>
 </head>
 <body <?php body_class(); ?>>
 <div id="page">

