/**
 * Created by JetBrains PhpStorm.
 * User: kasper
 * Date: 27.06.11
 * Time: 16:42
 * To change this template use File | Settings | File Templates.
 */

$(function() {
   $('.contenttable .lastTransparent tr').each(function() {
      
      $(this).children('th:last').css({
          'background-color': '#E5F1F6'
      }).addClass('last');
       
      $(this).children('td:last').css({
          'background-color': '#E5F1F6'
      }).addClass('last');
   });

    $('#wrapMiddle table tr td.center table a img,#oneCol table tr td a img').parent().css({
        'background-image' : 'none',
        'paddingLeft' : '0'
    })

    $('h1 a').each(function() {
       if($(this).attr('name')) {
           $(this).css({
               'background-image' : 'none',
               'paddingLeft' : '0'
           })
       }
    });

});
