--- sites/all/themes/ninesixty/template.php	2009-07-18 19:48:55.000000000 +0200
+++ sites/all/themes/ninesixty/templateNew.php	2010-05-26 14:44:02.000000000 +0200
@@ -6,10 +6,26 @@
  * Preprocessor for page.tpl.php template file.
  */
 function ninesixty_preprocess_page(&$vars, $hook) {
+  // $options arrays for l() function
+  $logo_img_options = array(
+    'attributes' => array(
+      'rel' => 'home',
+      'title' => t('Home'),
+    ),
+    'html' => TRUE,
+  );
+
+  $site_name_options = array(
+    'attributes' => array(
+      'rel' => 'home',
+      'title' => t('Home'),
+    ),
+  );
+
   // For easy printing of variables.
   $vars['logo_img']         = $vars['logo'] ? theme('image', substr($vars['logo'], strlen(base_path())), t('Home'), t('Home')) : '';
-  $vars['linked_logo_img']  = $vars['logo_img'] ? l($vars['logo_img'], '<front>', array('attributes' => array('rel' => 'home'), 'title' => t('Home'), 'html' => TRUE)) : '';
-  $vars['linked_site_name'] = $vars['site_name'] ? l($vars['site_name'], '<front>', array('attributes' => array('rel' => 'home'), 'title' => t('Home'))) : '';
+  $vars['linked_logo_img']  = $vars['logo_img'] ? l($vars['logo_img'], '<front>', $logo_img_options) : '';
+  $vars['linked_site_name'] = $vars['site_name'] ? l($vars['site_name'], '<front>', $site_name_options) : '';
   $vars['main_menu_links']      = theme('links', $vars['primary_links'], array('class' => 'links main-menu'));
   $vars['secondary_menu_links'] = theme('links', $vars['secondary_links'], array('class' => 'links secondary-menu'));
 
