Mega Menu drop down boxes don't appear when on JomSocial pages. I receive this error detected by firebug.
$ is not a function
http://www.hubpopulace.com/templates/gk ... nu/mega.js
Line 47
var jaMegaMenuMoo = new Class({
function $(el){
if (!el) return null;
if (el.htmlElement) return Garbage.collect(el);
if ([window, document].contains(el)) return el;
var type = $type(el);
if (type == 'string'){
el = document.getElementById(el);
type = (el) ? 'element' : false;
}
if (type != 'element') return null;
if (el.htmlElement) return Garbage.collect(el);
if (['object', 'embed'].contains(el.tagName.toLowerCase())) return el;
$extend(el, Element.prototype);
el.htmlElement = function(){};
return Garbage.collect(el);
};