function CreateAtlasImage (sourceURL)
{
	var atlasImage = new Image();
	atlasImage.src = sourceURL;
	
	//var iFrameElement = document.createElement("iframe"); 
	//iFrameElement.style.display = "none";
	//iFrameElement.setAttribute("src", "http://switch.atdmt.com/action/" + value);
}

jQuery(document).ready(function() {

   	jQuery(".roundedCorners").each(function(i) {
   		var thisBox = jQuery(this);
   		var content = thisBox.html();
   		thisBox.html("");
   		thisBox.append("<div class='topCorners'><span></span></div>")
			.append("<div class='roundedCornersContent cf'>" + content + "</div>")
			.append("<div class='bottomCorners'><span></span></div>");
   	});
});  