Index: wp-admin/includes/dashboard.php
===================================================================
--- wp-admin/includes/dashboard.php	(revision 10210)
+++ wp-admin/includes/dashboard.php	(working copy)
@@ -186,7 +186,7 @@
 	else
 		$text = $num;
 	echo '<td class="first b b-posts">' . $text . '</td>';
-	echo '<td class="t posts">' . __ngettext( 'Post', 'Posts', intval($num_posts->publish) ) . '</td>';
+	echo '<td class="t posts"><a href="edit.php">' . __ngettext( 'Post', 'Posts', intval($num_posts->publish) ) . '</a></td>';
 	/* TODO: Show status breakdown on hover
 	if ( $can_edit_pages && !empty($num_pages->publish) ) { // how many pages is not exposed in feeds.  Don't show if !current_user_can
 		$post_type_texts[] = '<a href="edit-pages.php">'.sprintf( __ngettext( '%s page', '%s pages', $num_pages->publish ), number_format_i18n( $num_pages->publish ) ).'</a>';
@@ -209,7 +209,7 @@
 	if ( current_user_can( 'moderate_comments' ) )
 		$num = "<a href='edit-comments.php'>$num</a>";
 	echo '<td class="b b-comments">'.$num.'</td>';
-	echo '<td class="last t comments">' . __ngettext( 'Comment', 'Comments', $num_comm->total_comments ) . '</td>';
+	echo '<td class="last t comments"><a href="edit-comments.php">' . __ngettext( 'Comment', 'Comments', $num_comm->total_comments ) . '</a></td>';
 
 	echo '</tr><tr>';
 
@@ -218,14 +218,14 @@
 	if ( current_user_can( 'edit_pages' ) )
 		$num = "<a href='edit-pages.php'>$num</a>";
 	echo '<td class="first b b_pages">'.$num.'</td>';
-	echo '<td class="t pages">' . __ngettext( 'Page', 'Pages', $num_pages->publish ) . '</td>';
+	echo '<td class="t pages"><a href="edit-pages.php">' . __ngettext( 'Page', 'Pages', $num_pages->publish ) . '</a></td>';
 
 	// Approved Comments
 	$num = number_format_i18n($num_comm->approved);
 	if ( current_user_can( 'moderate_comments' ) )
 		$num = "<a href='edit-comments.php?comment_status=approved'>$num</a>";
 	echo '<td class="b b_approved">'.$num.'</td>';
-	echo '<td class="last t approved">' . __ngettext( 'Approved', 'Approved', $num_comm->approved ) . '</td>';
+	echo '<td class="last t"><a class="approved" href="edit-comments.php?comment_status=approved">' . __ngettext( 'Approved', 'Approved', $num_comm->approved ) . '</a></td>';
 
 	echo "</tr>\n\t<tr>";
 
@@ -234,14 +234,14 @@
 	if ( current_user_can( 'manage_categories' ) )
 		$num = "<a href='categories.php'>$num</a>";
 	echo '<td class="first b b-cats">'.$num.'</td>';
-	echo '<td class="t cats">' . __ngettext( 'Category', 'Categories', $num_cats ) . '</td>';
+	echo '<td class="t cats"><a href="categories.php">' . __ngettext( 'Category', 'Categories', $num_cats ) . '</a></td>';
 
 	// Pending Comments
 	$num = number_format_i18n($num_comm->moderated);
 	if ( current_user_can( 'moderate_comments' ) )
 		$num = "<a href='edit-comments.php?comment_status=moderated'><span class='pending-count'>$num</span></a>";
 	echo '<td class="b b-waiting">'.$num.'</td>';
-	echo '<td class="last t waiting">' . __ngettext( 'Pending', 'Pending', $num_comm->moderated ) . '</td>';
+	echo '<td class="last t"><a class="waiting" href="edit-comments.php?comment_status=moderated">' . __ngettext( 'Pending', 'Pending', $num_comm->moderated ) . '</a></td>';
 
 	echo "</tr>\n\t<tr>";
 
@@ -250,14 +250,14 @@
 	if ( current_user_can( 'manage_categories' ) )
 		$num = "<a href='edit-tags.php'>$num</a>";
 	echo '<td class="first b b-tags">'.$num.'</td>';
-	echo '<td class="t tags">' . __ngettext( 'Tag', 'Tags', $num_tags ) . '</td>';
+	echo '<td class="t tags"><a href="edit-tags.php">' . __ngettext( 'Tag', 'Tags', $num_tags ) . '</a></td>';
 
 	// Spam Comments
 	$num = number_format_i18n($num_comm->spam);
 	if ( current_user_can( 'moderate_comments' ) )
 		$num = "<a href='edit-comments.php?comment_status=spam'><span class='spam-count'>$num</span></a>";
 	echo '<td class="b b-spam">'.$num.'</td>';
-	echo '<td class="last t spam">' . __ngettext( 'Spam', 'Spam', $num_comm->spam ) . '</td>';
+	echo '<td class="last t"><a class="spam" href="edit-comments.php?comment_status=spam">' . __ngettext( 'Spam', 'Spam', $num_comm->spam ) . '</a></td>';
 
 	echo "</tr>";
 	do_action('right_now_table_end');
