Note beforehand, I've already read this: https://developers.google.com/webmasters/ajax-crawling/docs/getting-started?hl=en-US
My pages are available via friendly URL's, e.g. http://www.wonderweddings.com/weddingshop/wedding-cameras
However, as you can see now, when using the filters on the left hand side (e.g. the "Price filters"), it is actually a regular hyperlink and the entire page is refreshed. So now I'm considering implementing AJAX functionality. My thought now is to refresh the product overview using jQuery and then update the URL in the browser address bar via javascript.
So, I believe I will not be having the AJAX URLs that are mentioned in the Google reference document, but just my regular URL format as I have it today.
What I plan to do is to keep the filters as links as they are now, but instead of following the link, override the click event and use that as input to my AJAX function to refresh the products and not the entire page. The thought is in this way Google will still be seeing my current pages with the current friendly urls because the filters are still links.
This way I hope to at least maintain my SEO rankings.
Are there any flaws in my plan? Suggestions? Comments? :)