Forum Moderators: open
thanks
it would ruin the look/theme of it if I were to include standard links
That comment makes me think you might be using javascript to get a rollover effect on a linked image. Is that the case? If so, then javascript only needs to be involved in the attributes onmouseover and onmouseout, and not in the link itself.
As long as you have <a href="some-url"> then some javascript in the rest of the anchor element will not be a problem for the spiders. Although if you are using an image, then you lose the extra SEO "punch" of having keyword text in the link.
If you really need to use an onclick for some reason, you can still go with <a href="some-url" onclick="some-method();return false;"> User agents with javascript turned off (like a spider!) will still get a link they can follow.