// Story scrollTo function // Requires jquery.querystring.js include // Case sensitive $(document).ready(function() { var link = urldecode($.Params.get('link')); var nomore = false; if (typeof searchtag == 'undefined') searchtag = 'h2'; if (link !== "") { // Search the page for this text $(searchtag + ':contains(' + link + ')').each(function() { if (nomore) return; var x = $(this).offset().top - 20; $('html,body').animate({scrollTop: x}, 500); nomore = true; }); } }); function urldecode(str) { return decodeURIComponent((str + '').replace(/\+/g, ' ')); }