$(function(){

  // Move to 200, 200
  $('#target').mouseenter(function(){
    $('#target').animate({
      top: -1630, 
      left: -200
    }, 18000, "swing").animate({ top:1800, left: -100}, 0) .animate({ top:0, left: 0}, 19000);

  });
  
});





















