Index: themes/bartik/css/style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/bartik/css/style.css,v
retrieving revision 1.3
diff -u -r1.3 style.css
--- themes/bartik/css/style.css	6 Aug 2010 01:40:29 -0000	1.3
+++ themes/bartik/css/style.css	22 Aug 2010 03:32:02 -0000
@@ -394,6 +394,14 @@
   padding-left: 2px; /* LTR */
 }
 
+/* --------------- Secondary Navigation ------------ */
+#secondary-navigation  {
+  float: right;
+}
+#secondary-navigation ul#secondary-menu {
+  margin: 1em 0;
+}
+
 /* ------------------- Main ------------------- */
 
 #main,
@@ -672,9 +680,6 @@
 #footer .block h2 {
   margin: 0;
 }
-#footer-wrapper ul#secondary-menu {
-  margin: 1em 0;
-}
 #footer-columns h2 {
   border-bottom: 1px solid #555;
   border-color: rgba(255,255,255,0.15);  
Index: themes/bartik/templates/page.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/bartik/templates/page.tpl.php,v
retrieving revision 1.3
diff -u -r1.3 page.tpl.php
--- themes/bartik/templates/page.tpl.php	8 Aug 2010 19:35:49 -0000	1.3
+++ themes/bartik/templates/page.tpl.php	22 Aug 2010 03:32:03 -0000
@@ -89,6 +89,23 @@
 
   <div id="header"><div class="section clearfix">
 
+    <?php if ($secondary_menu): ?>
+      <div id="secondary-navigation">
+        <?php print theme('links__system_secondary_menu', array(
+          'links' => $secondary_menu,
+          'attributes' => array(
+            'id' => 'secondary-menu',
+            'class' => array('links', 'clearfix'),
+          ),
+          'heading' => array(
+            'text' => t('Secondary menu'),
+            'level' => 'h2',
+            'class' => array('element-invisible'),
+          ),
+        )); ?>
+      </div>
+    <?php  endif; ?>
+
     <?php if ($logo): ?>
       <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home" id="logo">
         <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" />
@@ -257,22 +274,10 @@
       </div><!-- /#footer-columns -->
     <?php endif; ?>
 
-    <?php if ($page['footer'] || $secondary_menu): ?>
+    <?php if ($page['footer']): ?>
       <div id="footer" class="clearfix">
-        <?php print theme('links__system_secondary_menu', array(
-          'links' => $secondary_menu,
-          'attributes' => array(
-            'id' => 'secondary-menu',
-            'class' => array('links', 'clearfix'),
-          ),
-          'heading' => array(
-            'text' => t('Secondary menu'),
-            'level' => 'h2',
-            'class' => array('element-invisible'),
-          ),
-        )); ?>
         <?php print render($page['footer']); ?>
-    </div><!-- /#footer -->
+      </div><!-- /#footer -->
     <?php endif; ?>
 
   </div></div> <!-- /.section, /#footer-wrapper -->
