jQuery.fn.customInputButton = function(settings)
{
	
	settings = jQuery.extend({
	
	}, settings);
	
	return this.each(
		
		function()
		{
			
			var $this = jQuery(this);
			
			$this.wrap('<div class="custom_input_button_wrapper"></div>');
			
			$this.parent().append('<a href="#" id="' + $this.attr('id') + '" class="' + $this.attr('class') + '">' + $this.attr('value') + '</a>');

			$this.attr('id', '').attr('class','').hide();
			
		}
		
	);
	
}