var dakabdQuery;
var thirdPartyQuery = false;

function preserveThirdPartyLibs() {
    if (typeof(jQuery) != 'undefined' && jQuery.noConflict) {
        thirdPartyQuery = jQuery.noConflict(true);
    }
    if (typeof($) != 'undefined' && $.noConflict) {
        thirdPartyQuery = $.noConflict(true);
    }
}

function setupLibs() {
    dakabdQuery = jQuery.noConflict(true);
    if (typeof(thirdPartyQuery) != 'undefined' && thirdPartyQuery.noConflict) {
        $ = jQuery = thirdPartyQuery.noConflict();
    }
}
