function initializeRoundedCorners()
	{
	var divs = getTags("div");
	for (var i = 0; i < divs.length; i++)
		{
		if (divs[i].className == "rounded")
			{
			var top = document.createElement("div");
			top.className = "roundedCornerTop";
			var right = document.createElement("div");
			right.className = "roundedCornerRight";
			var bottom = document.createElement("div");
			bottom.className = "roundedCornerBottom";
			var left = document.createElement("div");
			left.className = "roundedCornerLeft";
			divs[i].appendChild(top);
			divs[i].appendChild(right);
			divs[i].appendChild(bottom);
			divs[i].appendChild(left);

			var topLeft = document.createElement("div");
			topLeft.className = "roundedCornerTopLeft";
			var topRight = document.createElement("div");
			topRight.className = "roundedCornerTopRight";
			var bottomLeft = document.createElement("div");
			bottomLeft.className = "roundedCornerBottomLeft";
			var bottomRight = document.createElement("div");
			bottomRight.className = "roundedCornerBottomRight";
			divs[i].appendChild(topLeft);
			divs[i].appendChild(topRight);
			divs[i].appendChild(bottomLeft);
			divs[i].appendChild(bottomRight);
			}
		}
	}
