// JavaScript Document
<!--
function paginaInicio(homepage){
	if(document.all) {
	   homepage.style.behavior='url(#default#homepage)';homepage.setHomePage('http://www.ojanguren.com');	
	}
}
function aFavoritos(){ 
	if (document.all)
		window.external.AddFavorite("http://www.ojanguren.com/", "Librerķas Ojanguren - Tu librerķa en Internet"); 
}

			/*function MoveMenu(obj){
				if(document.getElementById){
				var hijo = document.getElementById(obj);
				var padre = document.getElementById("navlist").getElementsByTagName("ul"); 
						for (var i=0; i<padre.length; i++){
							padre[i].style.display = "none";
						}
						hijo.style.display = "block";
					}
				}
			
			function selItem(){
				var el = document.getElementById("navlist").getElementsByTagName("a");
				if( el.className != "current"){
					for (var i=0; i<el.length; i++){
						el[i].className = "otro";
					}
					el.className = "otro";
				}else{
					el.className = "current";
					}
				}
			
			function selItem2(){
				var el = document.getElementById("navlist").getElementsByTagName("a");
				if(el.className != "current2"){
					for (var i=0; i<el.length; i++){
						if(el[i].className != "current"){
						el[i].className = "otro";
						}else{
						el[i].className = "current";
						}
					}
					el.className = "otro";
				}else{
					
					el.className = "current2";
					
					}
					
				}
				
				*/
		
	function fecha(){
	for(var i in document.links){
		document.links[i].onfocus = document.links[i].blur;
	}
	escribeFecha();
}

function escribeFecha(){
	hoy = new Date();
	mes = ["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"];
	anio = hoy.getYear();
	if (anio<1000) {
	   anio+=1900;	
	}
	hora = hoy.getDate()+" de "+ mes[hoy.getMonth()] +" de "+ anio +" - "+normalizar(hoy.getHours())+":"+normalizar(hoy.getMinutes())+":"+normalizar(hoy.getSeconds());
	if(document.getElementById){
		document.getElementById('reloj').innerHTML = hora;
		setTimeout("escribeFecha()",1000);
	}
}

function normalizar(x){
	if(x<10)
		return '0'+x;
	else
		return x;
}
				
-->