I am desperately hoping that someone here might be in a position to guide me.

I have just begun working with javascript and am trying to sort out the liveMenu from SourceForge.

I have had a number of issues with it that I was able to work through but this last one is driving me mad. So here it is.

I have uploaded a test site if anyone is interested (www.natural-health-labs.com/LiveMenuTest/)

1 . I am calling all javascript from a JSCRIPT folder

2. The file that seems to be the issue AND stopping the slider to operate for the liveMenu is Menu_head.js and the content is as follows:

Code:
    liveMenu.initOnLoad('liveMenu2', {('myMenu', { effect: 'slide' });
    beforeShow: function () { 
    this.opener.className = 'lm-selected-item';
    },
    beforeHide: function () {
    this.opener.className = '';
    }
    });
This is the error I am getting on Firefox
Code:
Error: invalid property id
Source File: http://www.natural-health-labs.com/LiveMenuTest/JSCRIPT/Menu_head.js
Line: 1, Column: 35
Source Code:
 liveMenu.initOnLoad('liveMenu2', {('liveMenu', { effect: 'slide' });
I have tried to find the proper coding for this in various locations but to no avail.

If someone who knows the answer could give me a push in the proper direction I would appreciate it.

I realize that for those who know javascript are looking at this saying, "This is pretty basic stuff." Before you ask; the answer would like be yes ... I regret not understanding javascript code!

Silverback