document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. jQuery ($)->
  2.   timer = 0;
  3.   $top = $(\'#block-block-3\').offset().top + 20
  4.  
  5.   jitteryScroll = ()->
  6.     timer = 0
  7.     topOfWindow = $(window).scrollTop()
  8.     if topOfWindow > $top
  9.       $(\'#block-block-3\').css({
  10.           position: \'absolute\'})
  11.       $(\'#block-block-3\').stop(true, true).animate({
  12.           opacity: 0.75
  13.           width: 40
  14.           top: topOfWindow
  15.           right: -25
  16.           }, 600, \'easeOutElastic\' )
  17.     else
  18.       $(\'#block-block-3\').stop(true, true).css({
  19.           opacity: 1
  20.           width: 270
  21.           top: 0
  22.           right: 0
  23.           position: \'relative\'
  24.           })
  25.  
  26.   $(window).scroll ()->
  27.     if !timer
  28.       timer = setTimeout jitteryScroll, 250
');