$(function() {
    $("*:contains('&')", document.body)
        .contents()
        .each(
            function() {
                if( this.nodeType == 3 ) {
                    $(this)
                        .replaceWith( this
                            .nodeValue
                            .replace( /&/g, "<span class='amp'>&</span>" )
                        );
                }
            }
        );
	$('.commentlist dd').css('-moz-border-radius','14px');
   	$('.commentlist dd').css('-webkit-border-radius','14px');
	$('#comments form ol li.buttons .button').css('-moz-border-radius','14px');
   	$('#comments form ol li.buttons .button').css('-webkit-border-radius','14px');
	$('.comments-callout a').css('-moz-border-radius','7px');
   	$('.comments-callout a').css('-webkit-border-radius','7px');
});