Index: themes/pushbutton/block.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/pushbutton/block.tpl.php,v
retrieving revision 1.2
diff -u -r1.2 block.tpl.php
--- themes/pushbutton/block.tpl.php	7 Aug 2007 08:39:36 -0000	1.2
+++ themes/pushbutton/block.tpl.php	11 Jan 2008 08:22:37 -0000
@@ -1,7 +1,9 @@
 <?php
 // $Id: block.tpl.php,v 1.2 2007/08/07 08:39:36 goba Exp $
 ?>
-<div class="<?php print "block block-$block->module" ?>" id="<?php print "block-$block->module-$block->delta"; ?>">
-  <div class="title"><h3><?php print $block->subject ?></h3></div>
+<div class="<?php print "block block-$block->module" ?>" id="block-<?php print $block->module .'-'. $block->delta; ?>">
+  <?php if (!empty($block->subject)): ?>
+      <div class="title"><h2><?php print $block->subject ?></h2></div>
+  <?php endif;?>
   <div class="content"><?php print $block->content ?></div>
-</div>
\ No newline at end of file
+</div>
Index: themes/pushbutton/page.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/pushbutton/page.tpl.php,v
retrieving revision 1.24
diff -u -r1.24 page.tpl.php
--- themes/pushbutton/page.tpl.php	7 Jan 2008 13:49:38 -0000	1.24
+++ themes/pushbutton/page.tpl.php	11 Jan 2008 08:22:38 -0000
@@ -2,119 +2,100 @@
 // $Id: page.tpl.php,v 1.24 2008/01/07 13:49:38 goba Exp $
 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>">
-<head>
-  <title><?php print $head_title ?></title>
-  <meta http-equiv="Content-Style-Type" content="text/css" />
-  <?php print $head ?>
-  <?php print $styles ?>
-  <?php print $scripts ?>
-</head>
-
-<body bgcolor="#ffffff">
-
-<div class="hide"><a href="#content" title="<?php print t('Skip navigation') ?>." accesskey="2"><?php print t('Skip navigation') ?></a>.</div>
-
-<table id="primary-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%">
-  <tr>
-    <td id="home" width="10%">
-      <?php if ($logo) : ?>
-        <a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print($logo) ?>" alt="<?php print t('Home') ?>" border="0" /></a>
-      <?php endif; ?>
-    </td>
-
-    <td id="site-info" width="20%">
-      <?php if ($site_name) : ?>
-        <div class='site-name'><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print($site_name) ?></a></div>
-      <?php endif;?>
-      <?php if ($site_slogan) : ?>
-        <div class='site-slogan'><?php print($site_slogan) ?></div>
-      <?php endif;?>
-    </td>
-    <td class="primary-links" width="70%" align="center" valign="middle">
-      <?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?>
-    </td>
-  </tr>
-</table>
-
-<table id="secondary-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%">
-  <tr>
-    <td class="secondary-links" width="75%"  align="center" valign="middle">
-      <?php print theme('links', $secondary_links, array('class' => 'links', 'id' => 'subnavlist')) ?>
-    </td>
-    <td width="25%" align="center" valign="middle">
-      <?php print $search_box ?>
-    </td>
-  </tr>
-  <tr>
-    <td colspan="2"><div><?php print $header ?></div></td>
-  </tr>
-</table>
-
-<table id="content" border="0" cellpadding="15" cellspacing="0" width="100%">
-  <tr>
-    <?php if ($left != ""): ?>
-    <td id="sidebar-left">
-      <?php print $left ?>
-    </td>
-    <?php endif; ?>
-
-    <td valign="top">
-      <?php if ($mission != ""): ?>
-      <div id="mission"><?php print $mission ?></div>
-      <?php endif; ?>
-
-      <div id="main">
-        <?php if ($title != ""): ?>
-          <?php print $breadcrumb ?>
-          <h1 class="title"><?php print $title ?></h1>
-
-          <?php if ($tabs != ""): ?>
-            <div class="tabs"><?php print $tabs ?></div>
+  <head>
+    <title><?php print $head_title ?></title>
+    <meta http-equiv="Content-Style-Type" content="text/css" />
+    <?php print $head ?>
+    <?php print $styles ?>
+    <?php print $scripts ?>
+  </head>
+
+  <body bgcolor="#ffffff">
+  
+    <div class="hide"><a href="#content" title="<?php print t('Skip navigation') ?>." accesskey="2"><?php print t('Skip navigation') ?></a>.</div>
+    
+    <table id="primary-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%">
+      <tr>
+        <td id="home" width="10%">
+          <?php if ($logo) : ?>
+            <a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print($logo) ?>" alt="<?php print t('Home') ?>" border="0" /></a>
           <?php endif; ?>
-
+        </td>
+    
+        <td id="site-info" width="20%">
+          <?php if ($site_name) : ?>
+            <div class='site-name'><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print($site_name) ?></a></div>
+          <?php endif;?>
+          <?php if ($site_slogan) : ?>
+            <div class='site-slogan'><?php print($site_slogan) ?></div>
+          <?php endif;?>
+        </td>
+        <td class="primary-links" width="70%" align="center" valign="middle">
+          <?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?>
+        </td>
+      </tr>
+    </table>
+    
+    <table id="secondary-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%">
+      <tr>
+        <td class="secondary-links" width="75%"  align="center" valign="middle">
+          <?php print theme('links', $secondary_links, array('class' => 'links', 'id' => 'subnavlist')) ?>
+        </td>
+        <td width="25%" align="center" valign="middle">
+          <?php print $search_box ?>
+        </td>
+      </tr>
+      <tr>
+        <td colspan="2"><div><?php print $header ?></div></td>
+      </tr>
+    </table>
+    
+    <table id="content" border="0" cellpadding="15" cellspacing="0" width="100%">
+      <tr>
+        <?php if ($left): print '<td id="sidebar-left">'. $left .'</td>'; endif; ?>
+    
+        <td valign="top">
+          <?php if ($mission): print '<div id="mission">'. $mission .'</div>'; endif; ?>
+    
+          <div id="main">
+            <?php if ($title): ?>
+              <?php print $breadcrumb ?>
+              <?php print '<h1 class="title">'. $title .'</h1>' ?>
+              <?php if ($tabs): print '<div class="tabs">'. $tabs .'</div>'; endif; ?>    
+            <?php endif; ?>
+
+            <?php if ($show_messages && $messages): print $messages; endif; ?>
+            <?php if ($help): print '<div id="help">'. $help .'</div>'; endif; ?>
+
+            <!-- start main content -->
+            <?php print $content; ?>
+            <?php print $feed_icons; ?>
+            <!-- end main content -->
+    
+          </div><!-- main -->
+        </td>
+        <?php if ($right): print '<td id="sidebar-right">'. $right .'</td>'; endif; ?>
+      </tr>
+    </table>
+    
+    <table id="footer-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%">
+      <tr>
+        <td align="center" valign="middle">
+        <?php if (isset($primary_links)) : ?>
+          <?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
         <?php endif; ?>
-
-        <?php if ($show_messages && $messages != ""): ?>
-          <?php print $messages ?>
+        <?php if (isset($secondary_links)) : ?>
+          <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
         <?php endif; ?>
-
-        <?php if ($help != ""): ?>
-            <div id="help"><?php print $help ?></div>
-        <?php endif; ?>
-
-      <!-- start main content -->
-      <?php print $content; ?>
-      <?php print $feed_icons; ?>
-      <!-- end main content -->
-
-      </div><!-- main -->
-    </td>
-    <?php if ($right != ""): ?>
-    <td id="sidebar-right">
-      <?php print $right ?>
-    </td>
-    <?php endif; ?>
-  </tr>
-</table>
-
-<table id="footer-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%">
-  <tr>
-    <td align="center" valign="middle">
-    <?php if (isset($primary_links)) : ?>
-      <?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
+        </td>
+      </tr>
+    </table>
+    
+    <?php if ($footer_message || $footer) : ?>
+      <div id="footer-message">
+        <p><?php print $footer_message . $footer;?></p>
+      </div>
     <?php endif; ?>
-    <?php if (isset($secondary_links)) : ?>
-      <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
-    <?php endif; ?>
-    </td>
-  </tr>
-</table>
-
-<?php if ($footer_message || $footer) : ?>
-<div id="footer-message">
-    <p><?php print $footer_message . $footer;?></p>
-</div>
-<?php endif; ?>
-<?php print $closure;?>
-</body>
+    <?php print $closure;?>
+  </body>
 </html>
Index: themes/pushbutton/box.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/pushbutton/box.tpl.php,v
retrieving revision 1.3
diff -u -r1.3 box.tpl.php
--- themes/pushbutton/box.tpl.php	7 Aug 2007 08:39:36 -0000	1.3
+++ themes/pushbutton/box.tpl.php	11 Jan 2008 08:22:37 -0000
@@ -2,8 +2,8 @@
 // $Id: box.tpl.php,v 1.3 2007/08/07 08:39:36 goba Exp $
 ?>
 <div class="box">
-  <?php if ($title): ?>
-  <h2 class="title"><?php print $title ?></h2>
-  <?php endif; ?>
-  <div class="content"><?php print $content ?></div>
+  <?php if ($title): print '<h2 class="title">'. $title .'</h2>'; endif; ?>
+  <div class="content">
+    <?php print $content ?>
+  </div>
 </div>
\ No newline at end of file
Index: themes/pushbutton/node.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/pushbutton/node.tpl.php,v
retrieving revision 1.4
diff -u -r1.4 node.tpl.php
--- themes/pushbutton/node.tpl.php	7 Aug 2007 08:39:36 -0000	1.4
+++ themes/pushbutton/node.tpl.php	11 Jan 2008 08:22:38 -0000
@@ -1,15 +1,30 @@
 <?php
 // $Id: node.tpl.php,v 1.4 2007/08/07 08:39:36 goba Exp $
 ?>
-<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
+<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
   <?php print $picture ?>
+  
   <?php if ($page == 0): ?>
-    <h1 class="title"><a href="<?php print $node_url ?>"><?php print $title ?></a></h1>
+    <h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
+  <?php endif; ?>
+  
+  <?php if ($submitted): ?>
+    <span class="submitted"><?php print $submitted; ?></span>
+  <?php endif; ?>
+  
+  <div class="content">
+    <?php print $content ?>
+  </div>
+  
+  <?php if ($taxonomy): ?>
+    <div class="meta">
+      <div class="taxonomy"><?php print $terms ?></div>
+    </div>
+  <?php endif;?>
+  
+  <?php if ($links): ?>
+    <div class="links">
+      &raquo; <?php print $links ?>
+    </div>
   <?php endif; ?>
-    <span class="submitted"><?php print $submitted ?></span>
-    <div class="taxonomy"><?php print $terms ?></div>
-    <div class="content"><?php print $content ?></div>
-    <?php if ($links): ?>
-    <div class="links">&raquo; <?php print $links ?></div>
-    <?php endif; ?>
 </div>
Index: themes/pushbutton/style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/pushbutton/style.css,v
retrieving revision 1.24
diff -u -r1.24 style.css
--- themes/pushbutton/style.css	22 Dec 2007 23:24:26 -0000	1.24
+++ themes/pushbutton/style.css	11 Jan 2008 08:22:39 -0000
@@ -81,18 +81,18 @@
   border-bottom: 3px solid #69c;
 }
 #primary-menu tr {
-  background: transparent url(header-a.jpg) left bottom repeat; /* LTR */
+  background: transparent url(images/header-a.jpg) left bottom repeat; /* LTR */
 }
 td#home {
-  background: transparent url(logo-background.jpg) left top repeat; /* LTR */
+  background: transparent url(images/logo-background.jpg) left top repeat; /* LTR */
 }
 td#home a:link img, td#home a:visited img {
-  background: transparent url(logo-active.jpg) repeat; /* LTR */
+  background: transparent url(images/logo-active.jpg) repeat; /* LTR */
   width: 144px;
   height: 63px;
 }
 td#home a:hover img {
-  background: transparent url(logo-hover.jpg) repeat; /* LTR */
+  background: transparent url(images/logo-hover.jpg) repeat; /* LTR */
   width: 144px;
   height: 63px;
 }
@@ -103,7 +103,7 @@
   color: #000;
 }
 #primary-menu .primary-links {
-  background: transparent url(header-b.jpg) left top no-repeat; /* LTR */
+  background: transparent url(images/header-b.jpg) left top no-repeat; /* LTR */
   font-size: 0.79em;
 }
 #primary-menu .primary-links h1, #primary-menu .primary-links h2, #primary-menu .primary-links h3 {
@@ -155,7 +155,7 @@
 }
 .tabs ul.primary li a {
   padding: 3px 10px;
-  background: #fff url(tabs-off.png) left top no-repeat; /* LTR */
+  background: #fff url(images/tabs-off.png) left top no-repeat; /* LTR */
   border-color: #69C;
   border-width: 2px;
   border-style: none solid none none; /* LTR */
@@ -165,7 +165,7 @@
   text-transform: lowercase;
 }
 .tabs ul.primary li.active a {
-  background: #369 url(tabs-on.png) left top no-repeat; /* LTR */
+  background: #369 url(images/tabs-on.png) left top no-repeat; /* LTR */
   border-right: 2px solid #369; /* LTR */
   color: #fff;
 }
@@ -192,17 +192,17 @@
   border-right: none; /* LTR */
 }
 .tabs ul.secondary li a {
-  background: #fff url(tabs-option-off.png) left center no-repeat; /* LTR */
+  background: #fff url(images/tabs-option-off.png) left center no-repeat; /* LTR */
   padding: 10px 0 10px 25px; /* LTR */
   margin: 0;
 }
 .tabs ul.secondary li a.active {
-  background: #fff url(tabs-option-on.png) left center no-repeat; /* LTR */
+  background: #fff url(images/tabs-option-on.png) left center no-repeat; /* LTR */
   color: #369;
   border-bottom: none;
 }
 .tabs ul.secondary li a:hover {
-  background: #fff url(tabs-option-hover.png) left center no-repeat; /* LTR */
+  background: #fff url(images/tabs-option-hover.png) left center no-repeat; /* LTR */
   color: #FF4500;
 }
 #content {
@@ -240,7 +240,7 @@
 }
 #site-info {
   background-color: #bdd3ea;
-  background-image: url(header-c.png);
+  background-image: url(images/header-c.png);
   font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, Verdana, sans-serif;
 }
 .site-name {
@@ -260,7 +260,7 @@
 #main {
   /* padding in px not ex because IE messes up 100% width tables otherwise */
   padding: 30px 35px 50px 35px;
-  background: transparent url(background.png) center center no-repeat;
+  background: transparent url(images/background.png) center center no-repeat;
   /* fix background overlapping text in IE (aka Peekaboo Bug) */
   position: relative;
 }
@@ -397,7 +397,7 @@
   font-weight: bold;
   padding: 10px 5px 10px 30px; /* LTR */
   margin-bottom: .25em;
-  background: transparent url(icon-block.png) left center no-repeat; /* LTR */
+  background: transparent url(images/icon-block.png) left center no-repeat; /* LTR */
 }
 .block .content {
   padding: 5px;
@@ -432,7 +432,7 @@
 .comment .title {
   font-size: 1em;
   padding: 10px 0 12px 19px; /* LTR */
-  background: transparent url(icon-comment.png) left center no-repeat; /* LTR */
+  background: transparent url(images/icon-comment.png) left center no-repeat; /* LTR */
 }
 .comment .new {
   font-weight: bold;
@@ -461,39 +461,39 @@
 }
 .nav .links .next a:link {
   padding: 17px 17px 17px 0; /* LTR */
-  background: transparent url(arrow-next.png) right center no-repeat; /* LTR */
+  background: transparent url(images/arrow-next.png) right center no-repeat; /* LTR */
 }
 .nav .links .next a:visited {
   padding: 17px 17px 17px 0; /* LTR */
-  background: transparent url(arrow-next-visited.png) right center no-repeat; /* LTR */
+  background: transparent url(images/arrow-next-visited.png) right center no-repeat; /* LTR */
 }
 .nav .links .next a:hover {
   padding: 17px 17px 17px 0; /* LTR */
-  background: transparent url(arrow-next-hover.png) right center no-repeat; /* LTR */
+  background: transparent url(images/arrow-next-hover.png) right center no-repeat; /* LTR */
 }
 .nav .links .prev a:link {
   padding: 17px 0 17px 17px; /* LTR */
-  background: transparent url(arrow-prev.png) left center no-repeat; /* LTR */
+  background: transparent url(images/arrow-prev.png) left center no-repeat; /* LTR */
 }
 .nav .links .prev a:visited {
   padding: 17px 0 17px 17px; /* LTR */
-  background: transparent url(arrow-prev-visited.png) left center no-repeat; /* LTR */
+  background: transparent url(images/arrow-prev-visited.png) left center no-repeat; /* LTR */
 }
 .nav .links .prev a:hover {
   padding: 17px 0 17px 17px; /* LTR */
-  background: transparent url(arrow-prev-hover.png) left center no-repeat; /* LTR */
+  background: transparent url(images/arrow-prev-hover.png) left center no-repeat; /* LTR */
 }
 .nav .links .up a:link {
   padding: 11px 0 17px 0;
-  background: transparent url(arrow-up.png) center top no-repeat;
+  background: transparent url(images/arrow-up.png) center top no-repeat;
 }
 .nav .links .up a:visited {
   padding: 11px 0 17px 0;
-  background: transparent url(arrow-up-visited.png) center top no-repeat;
+  background: transparent url(images/arrow-up-visited.png) center top no-repeat;
 }
 .nav .links .up a:hover {
   padding: 11px 0 17px 0;
-  background: transparent url(arrow-up-hover.png) center top no-repeat;
+  background: transparent url(images/arrow-up-hover.png) center top no-repeat;
 }
 
 /*
@@ -586,13 +586,13 @@
 }
 #forum td.container {
   color: #000;
-  background: #369 url(forum-container.jpg) right top no-repeat; /* LTR */
+  background: #369 url(images/forum-container.jpg) right top no-repeat; /* LTR */
   border: 2px solid #69c;
 }
 #forum td.container a {
   color: #e4e9eb;
   padding: 20px 0 20px 35px; /* LTR */
-  background: transparent url(forum-link.png) left center no-repeat; /* LTR */
+  background: transparent url(images/forum-link.png) left center no-repeat; /* LTR */
 }
 #forum td.container a:visited {
   color: #e4e9eb;
Index: themes/pushbutton/style-rtl.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/pushbutton/style-rtl.css,v
retrieving revision 1.3
diff -u -r1.3 style-rtl.css
--- themes/pushbutton/style-rtl.css	22 Dec 2007 23:24:26 -0000	1.3
+++ themes/pushbutton/style-rtl.css	11 Jan 2008 08:22:38 -0000
@@ -12,23 +12,23 @@
 }
 
 #primary-menu tr {
-  background: transparent url(header-a.jpg) right bottom repeat;
+  background: transparent url(images/header-a.jpg) right bottom repeat;
 }
 
 td#home {
-  background: transparent url(logo-background-rtl.jpg) right top repeat;
+  background: transparent url(images/logo-background-rtl.jpg) right top repeat;
 }
 
 td#home a:link img, td#home a:visited img {
-  background: transparent url(logo-active-rtl.jpg) repeat;
+  background: transparent url(images/logo-active-rtl.jpg) repeat;
 }
 
 td#home a:hover img {
-  background: transparent url(logo-hover-rtl.jpg) repeat;
+  background: transparent url(images/logo-hover-rtl.jpg) repeat;
 }
 
 #primary-menu .primary-links {
-  background: transparent url(header-b-rtl.jpg) right top no-repeat;
+  background: transparent url(images/header-b-rtl.jpg) right top no-repeat;
 }
 
 ul.links li {
@@ -57,13 +57,13 @@
 /* @end FF hacks */
 
 .tabs ul.primary li a {
-  background: #fff url(tabs-off-rtl.png) right top no-repeat;
+  background: #fff url(images/tabs-off-rtl.png) right top no-repeat;
   border-style: none none none solid;
   margin-left: 10px;
   margin-right: 0;
 }
 .tabs ul.primary li.active a {
-  background: #369 url(tabs-on-rtl.png) right top no-repeat;
+  background: #369 url(images/tabs-on-rtl.png) right top no-repeat;
   border-right: none;
   border-left: 2px solid #369;
 }
@@ -84,16 +84,16 @@
 }
 
 .tabs ul.secondary li a {
-  background: #fff url(tabs-option-off-rtl.png) right center no-repeat;
+  background: #fff url(images/tabs-option-off-rtl.png) right center no-repeat;
   padding: 10px 25px 10px 0;
 }
 
 .tabs ul.secondary li a.active {
-  background: #fff url(tabs-option-on.png) right center no-repeat;
+  background: #fff url(images/tabs-option-on.png) right center no-repeat;
 }
 
 .tabs ul.secondary li a:hover {
-  background: #fff url(tabs-option-hover-rtl.png) right center no-repeat;
+  background: #fff url(images/tabs-option-hover-rtl.png) right center no-repeat;
 }
 
 #menu {
@@ -110,7 +110,7 @@
 
 .block .title h3 {
   padding: 10px 30px 10px 5px;
-  background: transparent url(icon-block-rtl.png) right center no-repeat;
+  background: transparent url(images/icon-block-rtl.png) right center no-repeat;
 }
 
 .node .picture {
@@ -119,7 +119,7 @@
 
 .comment .title {
   padding: 10px 19px 12px 0;
-  background: transparent url(icon-comment-rtl.png) right center no-repeat;
+  background: transparent url(images/icon-comment-rtl.png) right center no-repeat;
 }
 
 .comment .new {
@@ -133,27 +133,27 @@
 
 .nav .links .next a:link {
   padding: 17px 0 17px 17px;
-  background: transparent url(arrow-next-rtl.png) left center no-repeat;
+  background: transparent url(images/arrow-next-rtl.png) left center no-repeat;
 }
 .nav .links .next a:visited {
   padding: 17px 0 17px 17px;
-  background: transparent url(arrow-next-visited-rtl.png) left center no-repeat;
+  background: transparent url(images/arrow-next-visited-rtl.png) left center no-repeat;
 }
 .nav .links .next a:hover {
   padding: 17px 0 17px 17px;
-  background: transparent url(arrow-next-hover-rtl.png) left center no-repeat;
+  background: transparent url(images/arrow-next-hover-rtl.png) left center no-repeat;
 }
 .nav .links .prev a:link {
   padding: 17px 17px 17px 0;
-  background: transparent url(arrow-prev-rtl.png) right center no-repeat;
+  background: transparent url(images/arrow-prev-rtl.png) right center no-repeat;
 }
 .nav .links .prev a:visited {
   padding: 17px 17px 17px 0;
-  background: transparent url(arrow-prev-visited-rtl.png) right center no-repeat;
+  background: transparent url(images/arrow-prev-visited-rtl.png) right center no-repeat;
 }
 .nav .links .prev a:hover {
   padding: 17px 17px 17px 0;
-  background: transparent url(arrow-prev-hover-rtl.png) right center no-repeat;
+  background: transparent url(images/arrow-prev-hover-rtl.png) right center no-repeat;
 }
 
 #tracker th {
@@ -170,12 +170,12 @@
 }
 
 #forum td.container {
-  background: #369 url(forum-container-rtl.jpg) left top no-repeat;
+  background: #369 url(images/forum-container-rtl.jpg) left top no-repeat;
 }
 
 #forum td.container a {
   padding: 20px 35px 20px 0;
-  background: transparent url(forum-link-rtl.png) right center no-repeat;
+  background: transparent url(images/forum-link-rtl.png) right center no-repeat;
 }
 
 /* IE hack */
