$(document).ready(function() {
	$('a').focus(function() {
		$(this).blur();
	});
	$('a.cms').children('span.cms_big').each(function() {
		buildButton($(this));
	});
});

function buildButton(span) {
	span.addClass('button');
	var caption = span.html();
	span.html('<span class="button_hlight">' + caption + '</span>' + caption);
}
