$(document).ready(function(){	
	// set onlick event for buttons
	$("a[rel=history]").click(function(){
		var hash = this.href;
		hash = hash.replace(/^.*#/, '');
		// moves to a new page. 
		// pageload is called at once. 
		$.history.load(hash);
		return false;
	});
});
