Hi Arsiei,
The image index1.
gif is above all the links!
Where you set your styles, you have a z-index of 11 for the div Oobj25, which means its on top of all your other divs, including the ones that contain the links.
If you change the z-index of Oobj25 to 1, it will be a the back and the the links will be in front of it.
I've never used site spinner before, but there should be some way to change the z-index of divs.
If you don't know how to edit the code, just look for this line:
Code:
#Oobj25 {position:absolute;z-index:11;visibility:visible;left:0px;top:-14px;width:800px;height:600px;font-size:1px;}
and change it to:
Code:
#Oobj25 {position:absolute;z-index:1;visibility:visible;left:0px;top:-14px;width:800px;height:600px;font-size:1px;}
Hope that helps! Give us a yell if you still have problems.
Cheers,
Jim.