function tryAgilo() {
  var arrow = '<div class="arrow"></div>';
  $("#tryAgilo").append(arrow).appendTo(".spotlight .wrapper");
  
  /* initial animation */
  $("#tryAgilo")
    .show()
    .animate({padding: "5px"},1000)
    .animate({top: "40px", opacity: 1},500,_bounce);
}

function _bounce() {
  var offset = 5;
  var top = 40;
  var duration = 200;
  
  var o = (top+offset)+"px";
  var t = top+"px";
  
  $("#tryAgilo")
    .animate({top: o},duration)
    .animate({top: t},duration)
    .animate({top: o},duration)
    .animate({top: t},duration)
    .animate({top: o},duration)
    .animate({top: t},duration)
    .animate({padding: "5px"},5000,_bounce
  );
}
