window.onpopstate = function(e) {
var state = e.state;
if(state == null){
e.stopPropagation();
window.location = document.location;
} else{
blogAjax(state.h);
}
}