QUOTE (CashRoyal @ Jun 7 2003, 05:07 AM)
michmaj, what are they like now?
i have to ask because on my pc they seem ok, but i know they aren't on others

It's still wrong. There is no z-index now at all. It works just like it was 1. I think it needs to be -1 or that entire div could be deleted completely.
Perhaps your browser interprets that the layer is in the background now but for me it's still in front of the links.
You had.
CODE
<div id="Layer1" style="position:absolute; left:21px; top:30px; width:636px; height:69px; z-index:1"></div>
You now have:
CODE
<div id="Layer1" style="position:absolute; left:21px; top:30px; width:636px; height:69px;"></div>
It should work if you change it to
CODE
<div id="Layer1" style="position:absolute; left:21px; top:30px; width:636px; height:69px; z-index:-1"></div>
And it should work if you delete that line altogether.
I am not an expert in HTML but it doesn't look like it's not needed for anything.