In your page you have several <h1> title elements, one above each album. If, for example, you wanted the URL ~/photos/#album1 to jump to the area with the heading "Album 1", you just have to modify your HTML a little. The "old fashioned" way of doing this was to provide an anchor <a> element with a matching name attribute. So,
<h1>Album 1</h1>
Would change to:
<a name="album1"></a><h1>Album 1</h1>
Or, modern browsers will jump to any element with an id that matches the hash value, so you could simply do:
<h1 id="album1">Album 1</h1>
The browser should take care of the rest. Just make sure all your ids on your page are unique. FYI: I didn't like the idea of jumping to the <div> elements, because then the heading gets cut out of the viewport.
window.location.hashshould give you the "UNIQUEID" part of the URL, if you want to attempt a JavaScript approach. If you just want the page to advance to the correct album, put an<a name="UNIQUEID"></a>in or around the<h1>title elements above each album, and the browser will do the rest for you. – Cory Jan 10 at 23:15