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