I'm thinking on programming an static intralinking script, all opinions needed: General Idea: - Make the site more slurpable, distributing parts of sitemap in all web pages. - Distance (nº of clicks to get to the page from the index) will decrase. - Can be done on a single domain or multiple sites. - It is not done for PR or Selling links, its just for better accesibility. - Usefull in webpages that are very active in main page, and articles or content pages disapear from the main index page every day. - Very easy to use, totaly SEO frendly. here I go: - Script will have a huge list of all single pages on a web site (pair of url and title or kwds) - The script will place N links to every page that calls it (ex: 5 links in footer) - the script will show the same links for the same url (I'll explain later how) so every url will have different links, but allways the same. - Links showed only depend on the url hash. -----------------------Url hash explanation--------------------- URL: www.yourdomain.com A=hash(www.yourdomain.com) (ex: A=4134341234) now we have a unique number of the page, if our site link list contains 133 pairs of title - url, now we can do: Link number 1 will be = A mod 133 this function gives us a number from 0 to 132, we have the list number of link to put on www.yourdomain.com This can be applied to have unique groups of links depending on the URL, for making it more interesting, if we add 30 urls to the list (total will be 132+30=162), calculating with 132, we still have the same links, and with 162 we have all the links, older and newer) Calling parameters will only be Nº of links at the date you added the script to that concrete footer, and the number of links to show. Thinking it can be better if automatically done: - Fixing the number of showed links. - Storing the data creation data of all urls, and we can call it without parameters, totaly scriptable, by only showing links older than page calling the script. (if page created on 12/09/04, will show only links to pages created earlyer) Note: say created or modified. Note2: sorry about your headache! I got inspired. ---------------------Thats all for today, ---------------------------------