document.observe('dom:loaded',function(){
	$$('.role').each(function(e){
		var m=(e.className).match(/(^|\s)role__([^\s]+)($|\s)/);
		if (m) e.setAttribute('role', m[2]);
	});
});
