Yeah, I had this javascript warning as well… so I looked at the js file and found a comma after the last element in the jQuery css function:
Here what I found: (bottom of ie6w_top.js)
"padding": "3px",
}).width((ie6w_b *28)+12);
and then I fixed it to
"padding": "3px"
}).width((ie6w_b *28)+12);
and it works now!
cheers, kulpae