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.
	*/
	settings = {
		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 myBoxObject1 = new curvyCorners(settings, "stitle_jp");
	var myBoxObject2 = new curvyCorners(settings, "stitle_ep");
	var myBoxObject3 = new curvyCorners(settings, "stitle_do");
	var myBoxObject4 = new curvyCorners(settings, "stitle_je");
	myBoxObject1.applyCornersToAll();
	myBoxObject2.applyCornersToAll();
	myBoxObject3.applyCornersToAll();
	myBoxObject4.applyCornersToAll();
}
