I am converting a "bells and whistles" flash template into a HTML+CSS+JQuery template, mostly for SEO considerations.
The client is very fond of the original template, so I have to reproduce as closely as possible the look and feel.
I would like to load the content using JQuery without ever leaving the page, to give the website the same feel as the Flash template, without visible page reloading. Click -> Animation -> display.
My question is whether Google and other search engines would consider the website to be a single page or take into account all the content that gets loaded though AJAX calls.
Is it more safe, SEO-wise, to make separate pages to be loaded when the user clicks on the links (the usual way)?
There is very little point of going through the conversion of the flash site if in the end, the website ends up being as SEO unfriendly as the original, but if that's not an issue, I know the customer would prefer something as close to the Flash template as possible.
The way I was considering to address the problem would be to create standard links on the page, but stop them from loading using JQuery and load the data directly on the page instead.
Without JavaScript, the links would load actual pages, with a page reload, and with Javascript, the same data would be loaded into the page directly.
Anyone knows how Google would deal with something like that?