  $(document).ready(function(){
    settings = {
      tl: { radius: 8 },
      tr: { radius: 8 },
      bl: false,
      br: false,
      antiAlias: true,		// Turning off anti-aliasing will reduce the smoothness of the corners
      autoPad: false,		// By default and DIVs that make use of the curvyCorners can't have padding applied
      validTags: ["li"]
    }

    //$("div#primary ul.links-menu li").curvy(settings);

    settings = {
      tl: { radius: 8 },
      tr: { radius: 8 },
      bl: { radius: 8 },
      br: { radius: 8 },
      antiAlias: true,		// Turning off anti-aliasing will reduce the smoothness of the corners
      autoPad: false,		// By default and DIVs that make use of the curvyCorners can't have padding applied
      validTags: ["div"]
    }

    $("div#container #center").curvy(settings);
    $("div#sidebar-left.sidebar").curvy(settings);
	$("div#lists").curvy(settings);
  });
