The way to do this is to manipulate location.hash when AJAX updates result in a state change that you'd like to have a discreet URL. For example, this page's URL is:
http://beta.stackoverflow.com/questions/1457/modify-address-bar-url-in-ajax-app-to-match-current-state
If a client side function executed this code:
// AJAX code to display the "foo" state goes here.
location.hash = 'foo';
Then, the URL displayed in the browser would be updated to:
http://beta.stackoverflow.com/questions/1457/modify-address-bar-url-in-ajax-app-to-match-current-state#foo
This allows users to bookmark the "foo" state of the page, and use the browser history to navigate between states.
With this mechanism in place, you'll then just need to parse out the hash portion of the URL on the server side and display the appropriate initial state.