$(function() {
  $('div.post-label a').each(
    function() {
      $(this).corner("top");
    }
  );
  
  $('textarea, input, div.photo, pre, div.synthi_code, div.sidebar, div.comment-wrapper, blockquote').each(
    function() {
      $(this).corner();
    }
  );
  
  $('div.post-internal').each(
    function() {
      $(this).corner("bottom");
    }
  );
  
  $('ul#nav li a').each(
    function() {
      $(this).corner('right');
    }
  );
});
