Mozilla doesn't like the unbalanced tree being generated via: document.write(); in imagehover.js. This:
document.write('<div id="trailimageid">');
document.write('</div>');
Should be this:
document.write('<div id="trailimageid"></div>');
Is there a reason for breaking it out into two statements?


Reply With Quote

