Hi,
I have had the opportunity to work with ja_edenite. My client wanted to use a jQuery based extension, and a not-surprising conflict appeared.
Well, being more convinced by Mootools than by jQuery, I simply resolved the problem using document.id instead of the infamous $ (for Mootools 1.3.x and 1.4.x):
line 33
this.menu = document.id(this.menu);
line 272
var container = document.id('ja-wrapper');
While I am at it, now that Joomla is Mootools 1.3 based since 1.7 , this should be updated too :
line 8
this.options = $extend({
should be now
this.options = Object.append({
line 218 and 228
$clear (li.timer);
should be
clearTimeout(li.timer);
* also $merge and $defined (of which there are several occurences)
In any case, congrats for your nice templates and otherwise smoothly working Mootools scripts.
Ghazal