Index: trunk/wp-content/themes/xpress_default/footer.php
===================================================================
--- trunk/wp-content/themes/xpress_default/footer.php	(revision 25)
+++ trunk/wp-content/themes/xpress_default/footer.php	(revision 32)
@@ -1,10 +1,10 @@
 <hr />
 <div id="xpress_footer">
-<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
 	<p>
-		<?php printf(__('%1$s is proudly powered by %2$s', 'kubrick'), get_bloginfo('name'),the_credit()); ?>
-		<br /><?php printf(__('%1$s and %2$s.', 'kubrick'), '<a href="' . get_bloginfo('rss2_url') . '">' . __('Entries (RSS)', 'kubrick') . '</a>', '<a href="' . get_bloginfo('comments_rss2_url') . '">' . __('Comments (RSS)', 'kubrick') . '</a>'); ?>
+		<?php printf(__('%1$s and %2$s.', 'kubrick'), '<a href="' . get_bloginfo('rss2_url') . '">' . __('Entries (RSS)', 'kubrick') . '</a>', '<a href="' . get_bloginfo('comments_rss2_url') . '">' . __('Comments (RSS)', 'kubrick') . '</a>'); ?>
 		<!-- <?php printf(__('%d queries. %s seconds.', 'kubrick'), get_num_queries(), timer_stop(0, 3)); ?> -->
 	</p>
+	<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
+		<div id="xpress_credit"><?php echo xpress_credit(). ' (' . xpress_convert_time() . ')'; ?></div>
 </div>
 </div>
Index: trunk/wp-content/themes/xpress_default/functions.php
===================================================================
--- trunk/wp-content/themes/xpress_default/functions.php	(revision 25)
+++ trunk/wp-content/themes/xpress_default/functions.php	(revision 32)
@@ -10,38 +10,4 @@
 load_theme_textdomain('kubrick');
 
-function the_credit()
-{
-	
-}
-
-function is_sidbar_disp()
-{
-	return true;
-}
-
-function kuro_previous_post_link($format='&laquo; %link', $link='%title', $in_same_cat = false, $excluded_categories = '')
-{
-	$pre_title = __('Previous Post'); // This text is included in the language file that exists in WordPress2.3 or the version after that.
-
-	ob_start();
-		previous_post_link($format,$link,$in_same_cat,$excluded_categories);
-		$ret = ob_get_contents();
-	ob_end_clean();
-	$ret= str_replace('">','" title="'. $pre_title . '">' , $ret);
-	echo $ret;
-}
-
-function kuro_next_post_link($format='%link &raquo;', $link='%title', $in_same_cat = false, $excluded_categories = '')
-{
-	$next_title = __('Next Post'); // This text is included in the language file that exists in WordPress2.3 or the version after that.  
-
-	ob_start();
-		next_post_link($format,$link,$in_same_cat,$excluded_categories);
-		$ret = ob_get_contents();
-	ob_end_clean();
-	$ret= str_replace('">','" title="'. $next_title . '">' , $ret);
-	echo $ret;
-}
-    
 function kubrick_head() {
 	$head = "<style type='text/css'>\n<!--";
Index: trunk/wp-content/themes/xpress_default/index.php
===================================================================
--- trunk/wp-content/themes/xpress_default/index.php	(revision 25)
+++ trunk/wp-content/themes/xpress_default/index.php	(revision 32)
@@ -3,5 +3,5 @@
        <div id="xpress_wrap">
 	   
-	<?php if(is_sidbar_disp()) : ?>
+	<?php if(xpress_is_theme_sidebar_disp()) : ?>
 	   
 		<div id="xpress_content" class="narrowcolumn">
Index: trunk/wp-content/themes/xpress_default/single.php
===================================================================
--- trunk/wp-content/themes/xpress_default/single.php	(revision 25)
+++ trunk/wp-content/themes/xpress_default/single.php	(revision 32)
@@ -13,6 +13,6 @@
 
 		<div class="xpress_single_navigation">
-			<div class="alignleft"><?php kuro_previous_post_link('&laquo; %link') ?></div>
-			<div class="alignright"><?php kuro_next_post_link('%link &raquo;') ?></div>
+			<div class="alignleft"><?php xpress_left_arrow_post_link(true) ?></div>
+			<div class="alignright"><?php xpress_right_arrow_post_link(true) ?></div>
 		</div>
 
Index: trunk/wp-content/themes/xpress_default/style.css
===================================================================
--- trunk/wp-content/themes/xpress_default/style.css	(revision 25)
+++ trunk/wp-content/themes/xpress_default/style.css	(revision 32)
@@ -141,4 +141,13 @@
 	font-size: 0.9em;
 }	
+
+#xpress_credit {
+	font-size: 0.9em;
+	color: darkgray;
+}
+#xpress_credit a {
+	font-size: 0.9em;
+	color: darkgray;
+}	
 /* End Typography & Colors */
 
@@ -250,4 +259,10 @@
 	margin: 0;
 	padding: 20px 0;
+	text-align: center;
+	}
+	
+#xpress_credit {
+	margin: 0;
+	padding: 0;
 	text-align: center;
 	}
