// JavaScript Document

	  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.
		  */
		  settingsTwo = {
			  tl: { radius: 0 },
			  tr: { radius: 0 },
			  bl: { radius: 4 },
			  br: { radius: 4 },
			  antiAlias: true,
			  autoPad: false
			  //,
			 // validTags: ["div"]
		  }
		  settingsThree = {
			  tl: { radius: 4 },
			  tr: { radius: 4 },
			  bl: { radius: 4 },
			  br: { radius: 4 },
			  antiAlias: true,
			  autoPad: false
			  //,
			 // validTags: ["div"]
		  }
		  
		  /*
		  Usage:
	
		  newCornersObj = new curvyCorners(settingsObj, classNameStr);
		  newCornersObj = new curvyCorners(settingsObj, divObj1[, divObj2[, divObj3[, . . . [, divObjN]]]]);
		  */
		  var myBoxObject = new curvyCorners(settingsTwo, "myBoxTwo");
		  myBoxObject.applyCornersToAll();
		  myBoxObject = new curvyCorners(settingsTwo, "main-content");
		  myBoxObject.applyCornersToAll();
		  myBoxObject = new curvyCorners(settingsThree, "osu-sidebar-red");
		  myBoxObject.applyCornersToAll();
		  myBoxObject = new curvyCorners(settingsThree, "osu-sidebar-gray");
		  myBoxObject.applyCornersToAll();
	  }