
jQuery(document).ready(function() {
	jQuery('input.button').each(function() {
		var input = jQuery(this);
		var button = jQuery('<div class="input-button"></div>');
		jQuery(this).after(button);
		button.append(input);

		//jQuery(this).remove();
	});
});
