$(function(){
	$('a.button').each(function(){
		$(this.lastChild).remove();
	}).append('<span class="button-pic"/>')
	$('button').prev().wrapInner('<span class="button-pic"/>');
});