/* Don't do any of this if it's Firefox 2, because of conflict between fixed positioning and opacity */
if (!($.browser.mozilla && parseFloat($.browser.version) < 1.9)) {
    /* Hide everything on the page with the class "fader" */
    document.write("<style>.fader { display: none; }</style>");
    window.onload = function() {
        /* Add opacity to menu */
        $("#titlebar-splash").css("opacity", "0.85");
        /* Fade in everything on the page with the class "fader" */
    	$(".fader").fadeIn(2000);
    }
}