// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

window.onload = function()
{
  settings = {
    tl: { radius: 0 },
    tr: { radius: 30 },
    bl: { radius: 30 },
    br: { radius: 0 },
    antiAlias: true,
    autoPad: false
  }
  var divObj = document.getElementById("RoundBox");
  var cornersObj = new curvyCorners(settings, divObj);
  cornersObj.applyCornersToAll();
}
