“We’ve got the resources, but we don’t have control over them,” he states, arguing that foreign ownership is preventing the nation from achieving true energy independence.
“Medicare was supposed to help us, but instead it turbocharged a medical industry,” Jeremy Cordeaux highlights how Medicare has unintentionally inflated the cost of healthcare.
Jim Elder provides listeners with a masterclass in the art of auctioneering. Describing auctioneering as both an art and a science, Jim explains the delicate
Ex-Wall Street advisor, on a mission to help young people win back their financial power, wealth, and security. Understand the hidden world of finance, risk,
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');
});
});