//reading
var hash = window.location.hash;

if(hash == '' || hash == "#ichi"){
  //show ichi stuff
}else if(hash == "#ni"){
  //show ni stuff
}else if(hash == "#san"){
  //show san stuff
}

//setting
//call this each time you change the nav
window.location.hash = "#ni";