$j(document).ready(function() {
    // detect a binary document and replace the core download DV plugin menu with this one
    var parents = $j(".jive-sidebar .jive-sidebar-downloadPlugin").parents(".jive-sidebar");
    if (parents.length == 1) {
        $j.get('offisync-plugin-download.jspa', function(html) {
            $j($j(".jive-sidebar .jive-sidebar-downloadPlugin").parents(".jive-sidebar").get(0)).replaceWith(html);
        });
    }
    // add the menu to the side bar for user own profile
    else {
        if ($j('#jive-approvals-tab').size() > 0) {
            // check the actions
            if ($j("#jive-action-sidebar").size() > 0) {

                // get the html for the download menu
                $j.get('offisync-plugin-download.jspa', function(html) {
                    $j("#jive-action-sidebar").after(html);
                });

            }
        }
    }
});
