/**
 * @author Nicolas
 */
var array_of_hopitaux = new Array();

function initHopitaux(){
	
	$.get("spip.php", { page: "hopitaux" },
  function(data){
    $(data).find('hopital').each(function(){
        array_of_hopitaux[$(this).attr('id')] = $(this);
      });
		document.getElementById('legende').innerHTML = '<h1>Les 5 sites du CHAM</h1>\r\nSurvolez un site sur la carte pour obtenir plus d\'information.<br>\r\nCliquez pour les coordonn&eacute;es compl&egrave;tes.';
  }, 'xml');
	
}

function survolHopital(hid){
    $('#legende').hide();
    var html_result = '';
    $(array_of_hopitaux[hid]).find('titre').each(function(){
        html_result += '<h1>' + $(this).text() + '</h1>';
      });
    $(array_of_hopitaux[hid]).find('description').each(function(){
        html_result += $(this).text();
      });
    document.getElementById('legende').innerHTML = html_result;
    $('#legende').show('slow');
}
