
/* - ++resource++dkrz.theme.javascripts/uglyfixes.js - */
function initDKRZThemeUglyFixes() {
    if (document.cookie) {
        var regmatch = document.cookie.match(/I18N_LANGUAGE=".."/);
        if (regmatch != null) {
            regmatch = regmatch[0];
            if (regmatch.substr(regmatch.indexOf("=")+2, 2) == "en") {
                var pressaction = document.getElementById("siteaction-press");
                var anchorele = pressaction.getElementsByTagName("a")[0];
                anchorele.innerHTML = "Press";
                anchorele.title = "Press information";
                anchorele.href = anchorele.href.replace(/about/, "about-en")
            }           
        }
    }
}


registerPloneFunction(initDKRZThemeUglyFixes);


