I decided to go back to FF17, as per Nightfliers suggestion. Here's how I did it.
1) download firefox 17 from one of the mirrors listed here:
http://www.mozilla.org/community/mirrors.html 2) unpack the resulting file (replace 17.0.1 with your version)
tar xvf firefox-17.0.1.tar.bz2
3) remove the old VL package (you'll have to be root from here on):
slapt-get --remove firefox
4) remove other things left over from old firefox:
rm -rf /usr/lib/firefox
rm /usr/bin/firefox
5) copy new firefox files to /usr/lib:
cp firefox /usr/lib
6) create symlink in /usr/bin/ pointing to the firefox executable in the directory /usr/lib/firefox/ :
ln -s /usr/lib/firefox/firefox /usr/bin/firefox
7) change the update release channel to esr: (this will stop firefox from suggesting updating to 18 and later)
mcedit /usr/lib/firefox/defaults/pref/channel-prefs.js
you'll want to change to the channel 'esr', so the contents should look like this:
pref("app.update.channel", "esr");
That's it!