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({	'.ash': { borderType:'shadow', cornerRadius:8, shadowWidth:3 },	'.ash2': { borderType:'simple', cornerRadius:8, border: 3},	'.blue': { borderType:'shadow', cornerRadius:8, shadowWidth:3 },	'.blue2': { borderType:'simple', cornerRadius:8},	'.green': { borderType:'shadow', cornerRadius:8, shadowWidth:3 },	'.green2': { borderType:'simple', cornerRadius:8},	'.mustard': { borderType:'shadow', cornerRadius:8, shadowWidth:3 },	'.mustard2': { borderType:'simple', cornerRadius:8},	'.orange': { borderType:'shadow', cornerRadius:8, shadowWidth:3 },	'.orange2': { borderType:'simple', cornerRadius:8},	'.yellow': { borderType:'shadow', cornerRadius:8, shadowWidth:3 },	'.yellow2': { borderType:'simple', cornerRadius:8},	'.red': { borderType:'shadow', cornerRadius:8, shadowWidth:3 },	'.red2': { borderType:'simple', cornerRadius:8},	'.brown': { borderType:'shadow', cornerRadius:8, shadowWidth:3 },	'.brown2': { borderType:'simple', cornerRadius:8},	'.aqua': { borderType:'shadow', cornerRadius:8, shadowWidth:3 },	'.aqua2': { borderType:'simple', cornerRadius:8},	'.purple': { borderType:'shadow', cornerRadius:8, shadowWidth:3 },	'.purple2': { borderType:'simple', cornerRadius:8},	'#wrapper': { borderType:'simple', cornerRadius:8 }});
addLoadEvent(function() {		try{ 		RUZEE.Borders.render();		}	catch(ex) { 		// nothing hapens. Doesn't matter if they don't have rounded corners	}});