I had a quick look at exmplmenu_var.js of both versions. They contain the following errors:
Code:
var HighBgColor='0099CC'; // Background color when mouse is over
var HighSubBgColor='0099CC'; // Background color when mouse is over on subs
should be:
Code:
var HighBgColor='#0099CC'; // Background color when mouse is over
var HighSubBgColor='#0099CC'; // Background color when mouse is over on subs
and
Code:
var FontLowColor='444488'; // Font color when mouse is not over
var FontSubLowColor='444488'; // Font color subs when mouse is not over
should be:
Code:
var FontLowColor='#444488'; // Font color when mouse is not over
var FontSubLowColor='#444488'; // Font color subs when mouse is not over
I don't know why the errors in one of your versions don't affect the colors, while they do in the other version.
Anyhow, try to correct the errors and see what happens.
Bookmarks