We do have non-AJAX page URLs: ?Page=X. We don't have complex state we need to pass on our site so it works out pretty good.
If you noticed, our page requests come from multiple sites. All our images are offloaded to our CDN so your browser can have multiple connections open at once to the various servers. The site that runs our code only has to send you the HTML, CSS, and JS (it still sends you some images like avatars but we're working on that). The AJAX request is only 1 request. Now there may be addtional requests that are needed to render the result (avatars, preview images, inserted pictures, etc.) but the AJAX call itself is just one HTTP request that sends much less data than a full page refresh.
Now I know we have some issues for users outside the US since our servers are located in the US but C9 is one of the fastest sites I use on the net. At home, at work, even on vacation it's lightning fast and I can move around quickly. I think that's possible due to the AJAX and perf tuning we've done. We built it this way because we think it provides a great user experience for interacting with our content. Bugs aside, I think it does just that.