jQuery(document).ready(function(){
    var message = 'You are now leaving the Australian Government e-strategyguide website.';
    jQuery('a[href^="http"]').not('[href*=".gov.au"]').click(function(){
        alert(message);
    });
});
