windowOnLoad(function()  {
  settings = {
    tl: { radius: 6 },
    tr: { radius: 6 },
    bl: { radius: 6 },
    br: { radius: 6 },
    antiAlias: true,
    autoPad: true,
    validTags: ["h2"]
    }
    var myBoxObject = new curvyCorners(settings, "myBox");
    myBoxObject.applyCornersToAll();
    
    settings2 = {
    tl: { radius: 12 },
    tr: { radius: 12 },
    bl: { radius: 12 },
    br: { radius: 12 },
    antiAlias: true,
    autoPad: true,
    validTags: ["div"]
    }
    var myBoxObject2 = new curvyCorners(settings2, "sideBox");
    myBoxObject2.applyCornersToAll();
});

