
function maxhorn()
  {
      /*
      The new 'validTags' setting is optional and allows
      you to specify other HTML elements that curvyCorners
      can attempt to round.

      The value is comma separated list of html elements
      in lowercase.

      validTags: ["div", "form"]

      The above example would enable curvyCorners on FORM elements.
      */
      settings = {
          tl: { radius: 5 },
          tr: { radius: 5 },
          bl: { radius: 1 },
          br: { radius: 1 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }
      
      settings_all_round = {
          tl: { radius: 5 },
          tr: { radius: 5 },
          bl: { radius: 5 },
          br: { radius: 5 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }

      /*
      Usage:

      newCornersObj = new curvyCorners(settingsObj, classNameStr);
      newCornersObj = new curvyCorners(settingsObj, divObj1[, divObj2[, divObj3[, . . . [, divObjN]]]]);
            */
      var myBoxObjectZero = new curvyCorners(settings, "fullround");
      myBoxObjectZero.applyCornersToAll();
      
      var myBoxObjectOne = new curvyCorners(settings, "third");
      myBoxObjectOne.applyCornersToAll();

      var myBoxObjectTwo = new curvyCorners(settings, "half");  
      myBoxObjectTwo.applyCornersToAll();
      
      var myBoxObjectThree = new curvyCorners(settings, "goldenA");  
      myBoxObjectThree.applyCornersToAll();
      
      var myBoxObjectFour = new curvyCorners(settings, "goldenB");  
      myBoxObjectFour.applyCornersToAll();
      
      var myBoxObjectFive = new curvyCorners(settings, "thirdhigh");  
      myBoxObjectFive.applyCornersToAll();
      
      var myBoxObjectSeven = new curvyCorners(settings, "fullfri");  
      myBoxObjectSeven.applyCornersToAll();
      
      var myBoxObjectEight = new curvyCorners(settings, "fullroundfri");  
      myBoxObjectEight.applyCornersToAll();
      
      var myBoxObjectNine = new curvyCorners(settings, "thirdfri");  
      myBoxObjectNine.applyCornersToAll();

      var myBoxObjectTen = new curvyCorners(settings_all_round, "sidoblock");  
      myBoxObjectTen.applyCornersToAll();
            }