$(document).ready(function() {


  setTimeout(bounce, 500);


});



function bounce() {
  $('#gratisberatung').animate({ top:'460px' }, 2000, 'easeOutBounce', function() {
    setTimeout(fadeOut, 10000);
  });

  return true;
}


function fadeOut() {
  $('#gratisberatung').fadeOut(500);

  return true;
}
