window.onload = function() {
	oSettings = {
	    tl: false ,
	    tr: { radius: 10 },
	    bl: { radius: 10 },
	    br: { radius: 10 },
	    antiAlias: true,
	    autoPad: true,
	    validTags: ["div"]
	}

	/*
	var oRoundedCorners = new curvyCorners(oSettings, "content");
	oRoundedCorners.applyCornersToAll();
	*/
	
	var divObj = document.getElementById("content");

	var cornersObj = new curvyCorners(oSettings, divObj);
   	cornersObj.applyCornersToAll();
	
}