Assignments in JavaScript return the value that was assigned. Firefox is evalutating all your JavaScript, and seeing that the last thing that happened was a statement that returned 'none'; it then makes that the window's location, because that's what the href attribute of a link is supposed to do. (kind of, anyway.)
You may wish to use the onclick attribute of the anchor tag instead of the href, and add a 'return false' to the end so that the default action for clicking on links -- navigating to the href -- doesn't happen.
<a onclick="document.getElementById('light').style.display='none';
document.getElementById('fade').style.display='none';
return false;">CLOSE</a>
Of course, even better would be to define a function for this. =)