jQuery.fn.aButton = function() {
	
	return this.each(function(){

		$(this).wrapInner($("<span></span>"));
		
		$(this).addClass('aBtn');
		$(this).addClass($(this).attr('rel'));
	});
};
