<div id="navbar">
<a id='load' href="home" title="hello">Home</a>
<a id='load' href="about">About</a>
<a id='load' href="contact">Contact</a>
</div>
<div id="content"></div>
jQuery(function($){
$("#navbar a").click(function(e) {
e.preventDefault();
var a = $(this).attr("href");
var href = a+'.html';
document.title = $(this).attr('title');
$("#content").load(href);
history.pushState(null, null, href);
});
});