Index: wp-content/themes/twentythirteen/sidebar-main.php
===================================================================
--- wp-content/themes/twentythirteen/sidebar-main.php	(revision 0)
+++ wp-content/themes/twentythirteen/sidebar-main.php	(revision 0)
@@ -0,0 +1,18 @@
+<?php
+/**
+ * The sidebar containing the footer widget area.
+ *
+ * If no active widgets in this sidebar, it will be hidden completely.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
+	<div id="secondary" class="sidebar-container" role="complementary">
+		<div class="widget-area">
+			<?php dynamic_sidebar( 'sidebar-1' ); ?>
+		</div>
+	</div><!-- #secondary -->
+<?php endif; ?>
\ No newline at end of file

Property changes on: wp-content/themes/twentythirteen/sidebar-main.php
___________________________________________________________________
Added: svn:eol-style
   + native

Index: wp-content/themes/twentythirteen/footer.php
===================================================================
--- wp-content/themes/twentythirteen/footer.php	(revision 23535)
+++ wp-content/themes/twentythirteen/footer.php	(working copy)
@@ -13,7 +13,7 @@
 
 		</div><!-- #main -->
 		<footer id="colophon" class="site-footer" role="contentinfo">
-			<?php get_sidebar( 'footer' ); ?>
+			<?php get_sidebar( 'main' ); ?>
 
 			<div class="site-info">
 				<?php do_action( 'twentythirteen_credits' ); ?>
Index: wp-content/themes/twentythirteen/js/functions.js
===================================================================
--- wp-content/themes/twentythirteen/js/functions.js	(revision 23535)
+++ wp-content/themes/twentythirteen/js/functions.js	(working copy)
@@ -92,7 +92,7 @@
 	if ( $.isFunction( $.fn.masonry ) ) {
 		var columnWidth = $( 'body' ).is( '.sidebar' ) ? 228 : 245;
 
-		$( '#tertiary .widget-area' ).masonry( {
+		$( '#secondary .widget-area' ).masonry( {
 			itemSelector: '.widget',
 			columnWidth:  columnWidth,
 			gutterWidth:  20
Index: wp-content/themes/twentythirteen/sidebar-footer.php
===================================================================
--- wp-content/themes/twentythirteen/sidebar-footer.php	(revision 23535)
+++ wp-content/themes/twentythirteen/sidebar-footer.php	(working copy)
@@ -1,18 +0,0 @@
-<?php
-/**
- * The sidebar containing the footer widget area.
- *
- * If no active widgets in this sidebar, it will be hidden completely.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
-	<div id="tertiary" class="sidebar-container" role="complementary">
-		<div class="widget-area">
-			<?php dynamic_sidebar( 'sidebar-2' ); ?>
-		</div>
-	</div><!-- #tertiary -->
-<?php endif; ?>
\ No newline at end of file
Index: wp-content/themes/twentythirteen/functions.php
===================================================================
--- wp-content/themes/twentythirteen/functions.php	(revision 23535)
+++ wp-content/themes/twentythirteen/functions.php	(working copy)
@@ -169,7 +169,7 @@
 		wp_enqueue_script( 'comment-reply' );
 
 	// Adds Masonry to handle vertical alignment of footer widgets.
-	if ( is_active_sidebar( 'sidebar-2' ) )
+	if ( is_active_sidebar( 'sidebar-1' ) )
 		wp_enqueue_script( 'jquery-masonry' );
 
 	// Loads JavaScript file with functionality specific to Twenty Thirteen.
@@ -225,9 +225,9 @@
  */
 function twentythirteen_widgets_init() {
 	register_sidebar( array(
-		'name'          => __( 'Sidebar', 'twentythirteen' ),
+		'name'          => __( 'Main Widget Area', 'twentythirteen' ),
 		'id'            => 'sidebar-1',
-		'description'   => __( 'Appears on posts and pages', 'twentythirteen' ),
+		'description'   => __( 'Appears in the footer section of the site', 'twentythirteen' ),
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
 		'after_widget'  => '</aside>',
 		'before_title'  => '<h3 class="widget-title">',
@@ -235,9 +235,9 @@
 	) );
 
 	register_sidebar( array(
-		'name'          => __( 'Footer Widget Area', 'twentythirteen' ),
+		'name'          => __( 'Secondary Widget Area', 'twentythirteen' ),
 		'id'            => 'sidebar-2',
-		'description'   => __( 'Appears in the footer section of the site', 'twentythirteen' ),
+		'description'   => __( 'Appears on posts and pages', 'twentythirteen' ),
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
 		'after_widget'  => '</aside>',
 		'before_title'  => '<h3 class="widget-title">',
Index: wp-content/themes/twentythirteen/sidebar.php
===================================================================
--- wp-content/themes/twentythirteen/sidebar.php	(revision 23535)
+++ wp-content/themes/twentythirteen/sidebar.php	(working copy)
@@ -1,6 +1,6 @@
 <?php
 /**
- * The sidebar containing the main widget area.
+ * The sidebar containing the secondary widget area, displays on posts and pages.
  *
  * If no active widgets in this sidebar, it will be hidden completely.
  *
@@ -9,12 +9,12 @@
  * @since Twenty Thirteen 1.0
  */
 
-if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
-	<div id="secondary" class="sidebar-container" role="complementary">
+if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
+	<div id="tertiary" class="sidebar-container" role="complementary">
 		<div class="sidebar-inner">
 			<div class="widget-area">
-				<?php dynamic_sidebar( 'sidebar-1' ); ?>
+				<?php dynamic_sidebar( 'sidebar-2' ); ?>
 			</div>
 		</div>
-	</div><!-- #secondary -->
+	</div><!-- #tertiary -->
 <?php endif; ?>
\ No newline at end of file
