$(document).ready(function() {
  // Browser version checking is done by pngfix()
  $('img[@src$=png], #logo a, #cfa a').pngfix();

  // IE fixes
  if ($.browser.msie && $.browser.version < 7) {
    $('#top_links').css('background-image', 'none');
    $('.column_frame').css('width', '645px');
    $('#cfa a').css('background-position', 'bottom');
    $('.column_frame .frame:last').css('margin-right', '0');
    $('#logo, #logo a, #cfa, #cfa a, #overstap, #overstap a').hover(
      function() {
        $(this).css('cursor', 'pointer');
      }
    );
  }
});

