function highlightBlueImage(id){
    getElement('mapap'+id).style.zIndex=99;
    getElement('mapai'+id).firstChild.src = "/media/css/mapaItemBlueLight.png";
    getElement('mapap'+id).style.visibility ="visible";

}
function dehighlightBlueImage(id){

    getElement('mapai'+id).firstChild.src = "/media/css/mapaItemBlue.png";
    getElement('mapap'+id).style.visibility ="hidden";
    getElement('mapap'+id).style.zIndex=6;
}

function highlightOrangeImage(id){
    getElement('mapap'+id).style.zIndex=99;
    getElement('mapai'+id).firstChild.src = "/media/css/mapaItemOrangeLight.png";
    getElement('mapap'+id).style.visibility ="visible";
}
function dehighlightOrangeImage(id){

    getElement('mapai'+id).firstChild.src = "/media/css/mapaItemOrange.png";
    getElement('mapap'+id).style.visibility ="hidden";
    getElement('mapap'+id).style.zIndex=6;
}


function highlightBlueText(id){

    getElement('mapap'+id).style.zIndex=99;
     getElement('mapatext'+id).style.background="#00aeef";
     getElement('mapap'+id).style.visibility ="visible";
    getElement('mapai'+id).firstChild.src = "/media/css/mapaItemBlueLight.png";
}

function dehighlightBlueText(id){
    getElement('mapap'+id).style.zIndex=6;

    getElement('mapatext'+id).style.background="none";
    getElement('mapap'+id).style.visibility ="hidden";
    getElement('mapai'+id).firstChild.src = "/media/css/mapaItemBlue.png";
}

function highlightOrangeText(id){

    getElement('mapap'+id).style.zIndex=99;
     getElement('mapatext'+id).style.background="#F68B1F";
     getElement('mapap'+id).style.visibility ="visible";
    getElement('mapai'+id).firstChild.src = "/media/css/mapaItemOrangeLight.png";
}
function dehighlightOrangeText(id){
    getElement('mapap'+id).style.zIndex=6;

    getElement('mapatext'+id).style.background="none";
    getElement('mapap'+id).style.visibility ="hidden";
    getElement('mapai'+id).firstChild.src = "/media/css/mapaItemOrange.png";
}


function getElement(id) {
  if (document.layers)
	return document[id];
  else if (document.all)
	return document.all[id];
  else if (document.getElementById)
	return document.getElementById(id);
}

