jQuery(function ($) {
    var a, m;
    // if on home page, don't show link cursor on home page link
    a = document.getElementById('home_link');
    if (a) {
        if (/^\/(|index.asp)($|\?)/.test(location.pathname)) {
            document.body.className += ' homePage';
            a.title = '';
        }
        var s = a.getElementsByTagName('span').item(0);
        if (s){
            s.title = a.title;
        }
    }
    // add next page links to end of They Remember War pages
    m = location.pathname.match(/^(\/they_remember_war_)(\d+)\.asp/);
    if (m && m[2] < 11) {
        $('#trw-footer p').append('<a href="' + m[1] + (parseInt(m[2]) + 1) + '.asp">&raquo; Next Story</a>');
    }
});
