[navigation] provide a link back from the full view to the paginated one
provide a better marker for navigation induced call detection
Closes #2103687
$(document).ready(function() {
$('a.rhythm').click(function (event){
$('div#pageContent').toggleClass('rhythm_bg');
$('div#page').toggleClass('rhythm_bg');
event.preventDefault();
});
});