Вы пытались запустить jQuery в режиме noConflict и создать собственную область видимости для переменной $ jQuery?
Query.noConflict();
(function($) {
$(function() {
// more code using $ as alias to jQuery
});
})(jQuery);
// other code using $ as an alias to the other library
Полная документация здесь
jQuery.noConflict ()