moves the specified item to a new position
// moving in the same list $$("list").move("a12", 0); $$("list").move("a13", -1); // moves an item to a different list var id = $$("list").move("a13", 0, $$("list2"));