(function($) {
  $.fn.aToButton = function(){
    return this.each(function() {
      var btn = document.createElement('button');
      $(btn).html($(this).html())
        .attr('href', $(this).attr('href') || '')
        .attr('class', $(this).attr('class') || '')
        .attr('title', $(this).attr('title') || '')
        .bind('click', function(e) {
          location.href = $(this).attr('href');
          return false;
        });
      $(this).replaceWith(btn);
    });
  };
})(jQuery);
        
        $(document).ready(function() {
        	  $('a.button').aToButton();
        	});

