function ddround () {
  // DD_roundies.addRule('#header', "10px");
  // DD_roundies.addRule('#navigation ul', "10px");  
}

if ($.browser.msie) {
  // add rounded corners - no need to wait for DOMready here
  ddround();
};

$(document).ready(function() {
  // IE specific
  if ($.browser.msie) {
    // fix last-child for menu
    $('#navigation li:last-child').css('border-bottom', 'none');  
    
    $.resize(function() {
      // manually call dd_roundies so resize works
      ddround();
    });
  };
  
  // highlight current menue entry
  var pathname = window.location.pathname;
  pathname = pathname.replace(/.*\//,'');
  if (pathname == '') { pathname = 'index.php' };
  $('#navigation li a[href="'+pathname+'"]').css('font-weight', 'bold');
  
});


