$(function()
{
  $("div.round_corners").each(function()
  {
    $(this).hide();
    $(this).corner("round");
    $(this).show();
  });
});
