Leigh Harrison shares his karting triumphs, the power of PREPD hydration, and a sneak peek into our motorsport journey, all in this action-packed episode of
Greg Rust shares stories of his career in finance and motorsport commentary, conversations with Murray Walker, Will Ferrell and Mario Andretti, and his passion for
Motorsport pro Todd Hazelwood takes us on a high-speed journey from karting triumphs to heart-stopping crashes, revealing the relentless passion that fuels his V8 Supercars
Join us for an action-packed episode as we revisit unforgettable moments at motorsport meets, share stories of meeting Mark Skaife, discuss V8 Supercars’ return to
We dive into women’s racing initiatives, ridiculous racing schedule conflicts, the latest results, and our top 5 future improvement requests for Supercars.
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');
});
});