function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}
RUZEE.Borders.add({
	'.cont_outline': { borderType:'simple', cornerRadius:8 },
	'.grey_rc': { borderType:'simple', cornerRadius:8 }
	
		//'.vb_c': { borderType:'shadow', cornerRadius:8, shadowWidth: 3}
});
addLoadEvent(function() {	
	try{ 
		RUZEE.Borders.render();	
	}
	catch(ex) { 
		// nothing hapens. Doesn't matter if they don't have rounded corners
	}
});