There is an onoad conflict. Since I assume you cannot alter the second script, we will have to alter the menu script. Open up menu_com.js in a text only editor like notepad and find this (around line number 46):
Code:
if(Trigger.onload)Dummy=Trigger.onload;
Trigger.onload=Go;
Replace it with:
Code:
if ( typeof window.addEventListener != "undefined" )
window.addEventListener( "load", Go, false );
else if ( typeof window.attachEvent != "undefined" )
window.attachEvent( "onload", Go );
else {
if ( window.onload != null ) {
var oldOnload = window.onload;
window.onload = function ( e ) {
oldOnload( e );
Go();
};
}
else
window.onload = Go;
}
Save it and use it instead of the original menu_com.js file. It should work fine for all of your pages.
Bookmarks