$(document).ready(function() {
  $('#assets .asset').hide();
  $(location.hash == '' ? '#assets .asset:first' : location.hash).show();
  $('#thumbs a').click(function() {
    $('#assets .asset').hide();
    var hash = this.href.match(/(#.+)/)[1];
    $(hash).show();
    return false;
  })
});
