Tested on IE7, FF2, FF3, Opera 9.27, Opera 9.62, Safari 3.2 - works.
My recomendation, replace last two strings in js-file (setup window.onload event) with:
Code:
if (navigator.appName == "Microsoft Internet Explorer")
{
window.attachEvent('onload', function() { addIEGlossy(); });
}
else
{
window.addEventListener('load',function OnLoad() { addGlossy(); }, true);
}