$j(function() {
  // open external links in new windows...
  $j('a[href*=://], #component_102707 a').attr('target', '_blank');

  $j('a[href*=music-player]').click(function() {
    window.open($j(this).attr('href'), 'player', 'height=294,width=500,menubar=no,toolbar=no,location=no,directories=no,personalbar=no,status=no,scrollbars=no');
    return false;
  });

  $j('body').css('background-image', 'url(/assets/images/bg' + Math.ceil(Math.random() * 3) + '.jpg)');

  $j('#component_102708 h3.title a').click(function() { return false })
})