The Greens’ proposal for an excessive profits tax might sound like a good idea, but as Jeremy Cordeaux points out, it could have disastrous consequences
Professor Quentin Grafton discusses the staggering $10 billion cost that long COVID inflicted on Australia in 2022. This financial burden affects not just individuals but
Dr. John Bruni and Commander Anders Puck Nielsen explore the strategic implications of Ukraine’s recent offensive into the Kursk region move and what it means
Monday July 24, 2023 – Australia’s future is at stake now, what are the government’s priorities? Philip Lowe, the outgoing governor of the Reserve Bank
jQuery(document).ready(function($) {
var playerContainer = $('#auscast-player-container');
var player = $('#auscast-player');
// Show player and store session
$('#play-auscast').click(function() {
playerContainer.slideDown();
sessionStorage.setItem('auscastPlaying', 'true');
sessionStorage.setItem('auscastSrc', player.attr('src'));
});
// Keep the player open and playing across page reloads
if (sessionStorage.getItem('auscastPlaying') === 'true') {
playerContainer.show();
player.attr('src', sessionStorage.getItem('auscastSrc'));
}
// Close player
$('#close-auscast-player').click(function() {
playerContainer.slideUp();
sessionStorage.removeItem('auscastPlaying');
sessionStorage.removeItem('auscastSrc');
player.attr('src', ''); // Stop playback
});
// Stop stream when another audio plays
$('audio, video').on('play', function() {
player.attr('src', '');
sessionStorage.removeItem('auscastPlaying');
sessionStorage.removeItem('auscastSrc');
});
});