function insertNowPlaying() {
      $('#center-wrap').before('<div id="nowplaying"><h2>NOW PLAYING: </h2><span id="npcontent"></span></div>');
}
    
function getNowPlaying(){
  $.ajax({
    url: "nowplaying/nowplaying.php",
    context: document.body,
    dataType: "html",
    success: function(html){
      $("#nowplaying #npcontent").html(html);
      fixNowPlaying();
    }
  });
}

function fixNowPlaying(){
  $('.composerpart').children().append(': ');
  $('#nowplaying a').each(function(){
    this.href= this.href.replace('whrb.org','spinitron.com');
    this.target='_blank';
  });
}
