

function Inicializar() {

    //Iluminar opcion de menu
    var paramet = "";
    if (window.location.search != "") {
        paramet = window.location.search;
        paramet = paramet.substr(1,paramet.length-1);
    }
    else
        paramet='1';
		
    if(document.getElementById('optmenu'+paramet))
        document.getElementById('optmenu'+paramet).className = 'current';                               

    //Iluminar las subopciones laterales (si las hubiera)
    var enlaces = document.getElementsByTagName("a");
    var pathentrada = window.location.href;
    var pathentrada2 = window.location.href;
    var pathentrada2 = pathentrada2.replace('extractos/ext_','');
    for (var i = 0; i < enlaces.length; i ++) {
      if(enlaces[i].href == pathentrada || enlaces[i].href == pathentrada2) {
         enlaces[i].className = "current";
      }
    }
	
	//BANNER
	if (document.getElementById('banner'))
	{
	    if (!Get_Cookie('banner_PDP')) {
		   document.getElementById('banner').style.display='';
		   Set_Cookie('banner_PDP','activo',360); //tiempo en minutos
		}
	}


}