$(document).ready( function(){
  var ahash = location.hash;
  if(ahash != ""){
    var hash = ahash.slice(1);
    if(hash != ''){
      $('#frameBase').attr('src','content/'+hash+'.html');
      location.hash = '';
    }
  }
});

