// JavaScript Document
function hacerActual(id){ 
var i,x,d,hr,ha,ef,a,ag;
	if(document.getElementById){
		d=document.getElementById(id);
		if(d){
			hr=window.location.href;
			ha=d.getElementsByTagName("A");
			if(ha&&ha.length){
				for(i=0;i<ha.length;i++){
					if(ha[i].href){
						if(hr.indexOf(ha[i].href)>-1){	
							ha[i].className="actual";
							ha[i].removeAttribute('href');
							//ha[i].style.color = '#000';
						}
					}
				}
			}
		}
	}
	
}





