Index: modules/blog/blog.pages.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/blog/blog.pages.inc,v
retrieving revision 1.26
diff -u -r1.26 blog.pages.inc
--- modules/blog/blog.pages.inc	21 Dec 2009 13:47:31 -0000	1.26
+++ modules/blog/blog.pages.inc	31 Dec 2009 09:49:56 -0000
@@ -17,7 +17,9 @@
   $items = array();
 
   if (($account->uid == $user->uid) && user_access('create blog content')) {
-    $items[] = l(t('Post new blog entry.'), "node/add/blog");
+    $items[] = l(t('Post new blog entry.'), "node/add/blog", array(
+      'attributes' => array('class' => array('node-add-blog')),
+    ));
   }
   elseif ($account->uid == $user->uid) {
     $items[] = t('You are not allowed to post a new blog entry.');
@@ -27,6 +29,7 @@
     '#items' => $items,
     '#theme' => 'item_list',
     '#weight' => -1,
+    '#attributes' => array('class' => array('blog-actions')),
   );
 
   $query = db_select('node', 'n')->extend('PagerDefault');
