AJS.toInit(function() {
    // If there is a scroll link, hide the link
    // to the standard word export from the tools menu
    if(AJS.$("#com-k15t-confluence-scroll-office-word-link")) {
        // let's hide using 'display:none' only, b/c
        // * remove causes some browser hick-ups
        // * hide doesn't work on confluence 3.0
        AJS.$("#action-export-word-link").parent().css("display", "none");
    }
});

