// source --> https://www.fireradio.fm/wp-content/themes/Impreza-child/js/custom.js?ver=7.0 
function getTitle() {
	jQuery.ajax({
        type: 'GET',
        url: "https://www.fireradio.fm/wp-content/themes/Impreza-child/nowplaying.php",
        success: function (data) {
            if(jQuery("#nowplaying").text() != data) {
				jQuery("#nowplaying").text(data);
				jQuery("#nowplaying_title").attr("title", data);
			}
        }
    });
}
jQuery(document).ready( function($) {
	getTitle();
	setInterval("getTitle()", 10000);
});