/****************************************************************************** * Copyright (C) Mathematica Policy Research, Inc. * This code cannot be copied, distributed or used without the express written permission * of Mathematica Policy Research, Inc. *******************************************************************************/ var amountScrolled = 300; $(window).scroll(function () { if ($(window).scrollTop() > amountScrolled) { $('a.back-to-top').fadeIn('slow'); } else { $('a.back-to-top').fadeOut('slow'); } });