(function ($) {
  $.fn.Mover = function () {
    
    $(this).each(function(index)
    {
    	var html = $(this).html();
    	var text = "";
    	var move = "<div id=\"move\">" + html + "</div>";

    	$("#container").append(move);
    	$(this).remove();
    });
  };
})(jQuery);
