Thanks for the replies guys!
But i think you didn't understand me :/
I really can't describe my idea very good becouse i'm not english
But code is universal and i'll show you what i tried to describe in my previous post
article108.html //using mod_rewrite to make urls more friendly
//Design and stuff
<div id="content">
This article is about bla bla bla bla ...
There's an artical that's related to this one. Here's the LINK.
</div>
//design and stuff
And the link is this
<a href="article1123.html" onClick="loadArticle(1123);">
The bots, as you said ignore javascript. So they will follow the link article1123.html,
which is a page of the site like any other with design, navigation and the content of the article.
article1123.html
//design and stuff
<div id="content">
this is the content of article 1123....
</div>
//design and stuff
On the other hand the users, when they click on the link the js event will be fired,
the next article will be dinamycally loaded in the content div
So in theory this will work. The users will quickly load the articles via ajax+json calls, and
the bots will index pages normaly, without knowing that there's a dynamic content on the page.
I hope you understood what my idea is this time and i'll be glad to discuss the issues in this method