Index: trunk/wp-content/themes/xpress_default/header.php
===================================================================
--- trunk/wp-content/themes/xpress_default/header.php	(revision 217)
+++ trunk/wp-content/themes/xpress_default/header.php	(revision 218)
@@ -41,5 +41,8 @@
 	</div>
 	<div class="xpress-operation-link">
-		<a href="<?php echo get_option('home'); ?>/"><?php _e('Mein Page','xpress')?></a> 
+		<?php if (xpress_is_wpmu()) : ?>
+		<a href="<?php echo get_blog_details(1)->siteurl ; ?>/"><?php _e('Main Page','xpress')?></a> | 
+		<?php endif; ?>
+		<a href="<?php echo get_option('home'); ?>/"><?php _e('Blogs Home','xpress')?></a> 
 		<?php if(is_xpress_contributor()) { echo ' | ' ; xpress_post_new_link(__('Post New','xpress')); }?>
 	</div>
Index: trunk/wp-content/themes/xpress_default/ja.po
===================================================================
--- trunk/wp-content/themes/xpress_default/ja.po	(revision 217)
+++ trunk/wp-content/themes/xpress_default/ja.po	(revision 218)
@@ -18,5 +18,5 @@
 "Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
 "POT-Creation-Date: 2008-08-15 21:16+0900\n"
-"PO-Revision-Date: 2009-04-11 14:12+0900\n"
+"PO-Revision-Date: 2009-05-20 17:57+0900\n"
 "Last-Translator: toemon <toychee@toemon.com>\n"
 "Language-Team: toemon <info@toemon.com>\n"
@@ -335,6 +335,10 @@
 
 #: header.php:43
-msgid "Mein Page"
+msgid "Main Page"
 msgstr "メインページ"
+
+#: header.php:43
+msgid "Blogs Home"
+msgstr "ブログのホーム"
 
 #: header.php:44
Index: trunk/wp-content/themes/xpress_mu_home/home.php
===================================================================
--- trunk/wp-content/themes/xpress_mu_home/home.php	(revision 217)
+++ trunk/wp-content/themes/xpress_mu_home/home.php	(revision 218)
@@ -24,5 +24,43 @@
 	echo "</ul>\n";
 	?> 
-	<br />	
+	<br />
+		
+<?php
+	$date_format = get_settings('date_format');
+	$blog_count = get_blog_count();
+	if ($blog_count > 1){
+		echo '<h3>' . __('New Entries', 'xpress') . "</h3>\n";
+
+		$blog_list = get_blog_list();
+		echo "<ul>\n";
+		for ($i = 0; $i < $blog_count; $i++){
+    		$blog_id = $blog_list[$i]['blog_id'];
+			if ($blog_id == 1) continue;
+        	$output_blogs = '<li><a href="' .
+            get_blog_option($blog_id,'siteurl') . '">' .
+            get_blog_option($blog_id,'blogname') .
+            '</a></li>';
+        	echo $output_blogs;
+
+			$wpdb->set_blog_id($blog_id);
+			query_posts("showposts=3&post_status=publish");
+			if (have_posts()){
+				echo "<ul>\n";
+				while(have_posts()){
+					the_post();
+        			echo '<li>';
+        			echo '<a href="' . $post->guid . '">' . $post->post_title . "</a>\n(";
+        			the_time($date_format);
+        			echo ")</li>\n";
+        		}
+				echo "</ul>\n";
+			}
+		}
+		$wpdb->set_blog_id(1);
+
+		echo "</ul>\n";
+	}
+?>
+
 	<h3><?php _e('Updated Blogs', 'xpress'); ?></h3>
 	<?php
Index: trunk/wp-content/themes/xpress_mu_home/ja.po
===================================================================
--- trunk/wp-content/themes/xpress_mu_home/ja.po	(revision 217)
+++ trunk/wp-content/themes/xpress_mu_home/ja.po	(revision 218)
@@ -18,5 +18,5 @@
 "Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
 "POT-Creation-Date: 2008-08-15 21:16+0900\n"
-"PO-Revision-Date: 2009-05-20 12:39+0900\n"
+"PO-Revision-Date: 2009-05-20 17:08+0900\n"
 "Last-Translator: toemon <toychee@toemon.com>\n"
 "Language-Team: toemon <info@toemon.com>\n"
@@ -354,18 +354,22 @@
 msgstr "投稿数"
 
-#: home.php:27
+#: home.php:32
+msgid "New Entries"
+msgstr "新着情報"
+
+#: home.php:63
 msgid "Updated Blogs"
 msgstr "最近更新があったブログ"
 
-#: home.php:48
+#: home.php:84
 #, php-format
 msgid "Howdy %s"
 msgstr "こんにちは %s さん"
 
-#: home.php:54
+#: home.php:90
 msgid "Your Blogs list"
 msgstr "あなたのブログリスト"
 
-#: home.php:65
+#: home.php:101
 msgid "Create a new blog"
 msgstr "新しいブログを作成する"
