// --------------------------------------------------------------------------------
// Global namespace for all Dairy Council JavaScript
var jDC = {};


// --------------------------------------------------------------------------------
// Layout
jDC.layout = {

	applyCorners: function(id, rad) {

		var textBox = document.getElementById(id);

		if (textBox) {
			var settings = {
				tl: { radius: rad },
				tr: { radius: rad },
				bl: { radius: rad },
				br: { radius: rad },
				antiAlias: true,
				validTags: ["div"]
			};
			var corners = new curvyCorners(settings, textBox);
			corners.applyCornersToAll();
		}

	}

};

