gallery.each(function(i){
var dropper = $(this);
var targetPiece = piece.eq(dropper.index());
dropper.droppable({
accept:targetPiece,
drop:function(){
var tg = $(this);
var tx = tg.offset().left;
var ty = tg.offset().top;
targetPiece.animate({left:tx, top:ty},{duration:400, complete:function(){
다른건 다 했는데 딱 요 부분만 뭔소리를 하는거지? 이해가 되질 않아요!!!!....
또 변수에 $(this); 라고 선언해주는 이유는 뭔가요???