diff --git a/source/_layouts/bootstrap.html b/source/_layouts/bootstrap.html
index db2c3c90..a85ffe75 100644
--- a/source/_layouts/bootstrap.html
+++ b/source/_layouts/bootstrap.html
@@ -9,6 +9,7 @@ page_title: The Ardour Manual
{{page.page_title}}
+
@@ -71,22 +72,6 @@ page_title: The Ardour Manual
e.className += ' mac'; // class magic for Cmd vs. Ctrl keys.
}
- var tree = document.getElementById('tree'),
- anchors = document.getElementsByTagName('a'),
- name = '/' + document.location.pathname.split('/')[1] + '/',
- offset;
-
- for (var i = 0; i < anchors.length; i++) {
- if (anchors[i].getAttribute('name') === name) {
- offset = anchors[i].offsetTop;
- break;
- }
- }
-
- if (tree && offset) {
- tree.scrollTop = offset - 10;
- }
-