# HG changeset patch
# User Armin Rigo <arigo@tunes.org>
# Date 1391032825 -3600
#      Wed Jan 29 23:00:25 2014 +0100
# Branch extradoc
# Node ID e714082895349ff86b1430522f2053a768482a24
# Parent  0de1b2f3e8b555d4150ed66bdfe9d204bb494f9e
The right column should select by default "Donate towards xxx"
if we are visiting the page "xxxdonate.html".  Otherwise, we
get confusing results when changing the right-column subpage
by clicking on "Donate towards xxx": when we click "read
proposal", it always resets the right-column back to STM.

diff --git a/js/script2.js b/js/script2.js
--- a/js/script2.js
+++ b/js/script2.js
@@ -18,4 +18,10 @@
     $.get("don3.html", set_sidebar_html);
 }
 
-$(document).ready(stm_donate);
+if (location.href.indexOf("numpydonate.html") >= 0)
+    f = numpy_donate;
+else if (location.href.indexOf("py3donate.html") >= 0)
+    f = py3k_donate;
+else
+    f = stm_donate;
+$(document).ready(f);