  window.onload = function()
  {
      settings = {
          tl: { radius: 10 },
          tr: { radius: 10 },
          bl: { radius: 10 },
          br: { radius: 10 },
          antiAlias: true,
          autoPad: false,
          validTags: ["dl"]
      }
      
      var myBoxObject = new curvyCorners(settings, "event");
      myBoxObject.applyCornersToAll();
      
      settings2 = {
          tl: { radius: 10 },
          tr: { radius: 10 },
          bl: { radius: 10 },
          br: { radius: 10 },
          antiAlias: true,
          autoPad: false,
          validTags: ["div"]
      }
      
      var myBoxObject2 = new curvyCorners(settings2, "exh");
      myBoxObject2.applyCornersToAll();

      var myBoxObject3 = new curvyCorners(settings, "work");
      myBoxObject3.applyCornersToAll();
      
      settings4 = {
          tl: false,
          tr: false,
          bl: { radius: 10 },
          br: { radius: 10 },
          antiAlias: true,
          autoPad: false,
          validTags: ["div"]
      }
      
      var divObj = document.getElementById("footer");
      var myBoxObject4 = new curvyCorners(settings4, divObj);
      myBoxObject4.applyCornersToAll();
  }
