Short of intercepting the back button and then applying the effect you want to achieve with jQuery, this is quite likely "by design" for Firefox, Opera (tested in v11.60 on Windows XP) and .. couldn't test it in Internet Explorer 8 because
'console' is undefined in erny.js, Line: 1142
which made the browser go to a white screen. It pretty much loaded the page and then immediately broke the site completely. You can fix that by using encapsulating any console commands with
if (console) { /** your command **/ }
which is just good practice because you should Be Nice To Browsers That Don't Have a Console Or FireBug™...but then you've also got a very obtrusive alert that tells a visitor
For best viewing experience, please use Firefox, Chrome or Safari
So what I'm building up to saying is that you should focus a little more on just those aspects of the usability of your site first before returning to mostly visual concerns. Unless you're 100% certain that only Safari users will visit your site, you really shouldn't make your visitors feel unwelcome by presenting them with a pop-up or error on their first entry to your site.