  window.onload = function()
  {
      /*
      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.
      */
	  /* Voor de picto's zelf: */
	var radje1 = 3;
      settingsPicto = {
          tl: { radius: radje1 },
          tr: { radius: radje1 },
          bl: { radius: radje1 },
          br: { radius: radje1 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }
	  
	  /* Voor de randjes om de picto's */
	  	var radje2 = 5;
      settingsRand = {
          tl: { radius: radje2 },
          tr: { radius: radje2 },
          bl: { radius: radje2 },
          br: { radius: radje2 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }
	  
	  	  /* Voor de picto's zelf: LINKS */
		var radje3 = 3;
      settingsPictoLeft = {
          tl: { radius: radje3 },
          tr: false,
          bl: { radius: radje3 },
          br: false,
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }
	  
	  	  	  /* Voor de picto's zelf: RECHTS */
		var radje4 = 3;
      settingsPictoRight = {
          tl: false,
          tr: { radius: radje4 },
          bl: false,
          br: { radius: radje4 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }

      /*
      Usage:

      newCornersObj = new curvyCorners(settingsObj, classNameStr);
      newCornersObj = new curvyCorners(settingsObj, divObj1[, divObj2[, divObj3[, . . . [, divObjN]]]]);
      */
	  myBoxObject = new curvyCorners(settingsPicto, "myPictoBox48");
	  myBoxObject.applyCornersToAll();
	  myBoxObject = new curvyCorners(settingsRand, "myColoredBgBox48");
	  myBoxObject.applyCornersToAll();
	  
	  myBoxObject = new curvyCorners(settingsPictoLeft, "myPictoBox48DualLeft");
	  myBoxObject.applyCornersToAll();
	  myBoxObject = new curvyCorners(settingsPictoRight, "myPictoBox48DualRight");
	  myBoxObject.applyCornersToAll();
	  myBoxObject = new curvyCorners(settingsRand, "myColoredBgBox48Dual");
	  myBoxObject.applyCornersToAll();
      
	  myBoxObject = new curvyCorners(settingsPicto, "myPictoBox55");
	  myBoxObject.applyCornersToAll();
	  myBoxObject = new curvyCorners(settingsRand, "myColoredBgBox55");
	  myBoxObject.applyCornersToAll();
	  
	  myBoxObject = new curvyCorners(settingsPictoLeft, "myPictoBox55DualLeft");
	  myBoxObject.applyCornersToAll();
	  myBoxObject = new curvyCorners(settingsPictoRight, "myPictoBox55DualRight");
	  myBoxObject.applyCornersToAll();
	  myBoxObject = new curvyCorners(settingsRand, "myColoredBgBox55Dual");
      myBoxObject.applyCornersToAll();
  }