var default_ajax_text = 'Select a link';
var hover_state = false;

function init_page() {
  if (typeof (document.getElementById('ajax_bar_right')) != 'undefined') {
    init_ajax_events();
  }
}
function init_ajax_events() {
  var i=0;
  var currentMap=document.getElementById('home_artist_links');	
  var currentArea = currentMap.childNodes[i];
  
  while (currentArea) {
    currentArea.onmouseover = hoverArea;
    i++;
    currentArea = currentMap.childNodes[i];	
  }
  
  currentMap.onmouseout = unhoverArea;
}
function hoverArea() {
  hover_state = true;
  document.getElementById('ajax_bar_right').innerHTML = this.childNodes[0].title;
}
function unhoverArea() {
  hover_state = false;
  window.setTimeout("if (hover_state==false) { document.getElementById('ajax_bar_right').innerHTML = default_ajax_text }",100);
}
function open_player(artist) {
  window.open("http://www.activeevents.org.uk/assets/swf/xspf_player.swf?playlist_url=/"+artist+".xspf&autoplay=1","player","status=0,toolbar=0,width=400,height=170,resizable=0,location=0,scrollbars=0,menubar=0,directories=0");
} 
