$(function() {
$('a.remote').remote('#paper', function() {
if (window.console && window.console.info) {
console.info('content loaded');
}
});
$('a.history:eq(0)').history(function() {
$('#show-hide').hide();
});
$('a.history:eq(1)').history(function() {
$('#show-hide').show();
});
$.ajaxHistory.initialize(function(){
$('#paper').load('home.php');
});
});
