jQuery(document).ready(function(){
    var message = 'You are now leaving the Australian Government website for the Senator the Hon. Stephen Conroy, Minister for Broadband, Communications and the Digital Economy.';
    jQuery('a[href^="http"]').not('[href*=".gov.au"]').click(function(){
        alert(message);
    });
});

