This is causing the problem in IE, confusing that browser, since you have another similar instruction just below it:
Code:
menus[0].floatMenu(800, 600, -113, 0);
FF has a new 'security feature' since this script was written that prevents the page from reloading on resize. You can check to see if the author has an update but putting this at the very top of config.js will fix it:
Code:
function myReFunction(){setTimeout("window.location.reload( false )",1)}
if (document.getElementById&&!document.all)
if ( typeof window.addEventListener != "undefined" )
window.addEventListener( "resize", myReFunction, false );
Additionally, if you want it to look good in Opera as well, change this:
Code:
menus[0].floatMenu(800, 600, -113, 0);
menus[0].floatMenu(1024, 768, 0, 0);
to:
Code:
if (!window.opera)
menus[0].floatMenu(1024, 768, 0, 0);
else
menus[0].floatMenu(1005, 776, 0, 2);
Whatever you do, at least get rid of:
Code:
menus[0].floatMenu(800, 600, -113, 0);
Bookmarks