$(function() {
                $('a.remote').remote('#chapter', 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();
            });

