$(document).ready(function() {
    //Get the heading of the page    
    var pageHeading = $('h1:first', $('#content')).html();
    //Clean any additional spaces that may be present
    pageHeading = pageHeading.replace(/^\s+|\s+$/g, '') ;
    //Hide the introduction block for any page except the homepage
    if (pageHeading != 'Brief overview of a developmental definition of multiageing') {
        $('.introduction', $('.page')).hide();
    }
    //Add page heading to page title
    $('title').html(pageHeading + ', Australian Association of Multiage Education (AAME)');
    //Cycle through the menu and highlight any links to this page
    $('.column ul a').each(function(){
        if (pageHeading == $(this).html()) {
            $(this).css('fontWeight', 'bold');
        }
    });
});