//dynamic top navigation
initNav = function() {
	var navRoot = document.getElementById("nav");
	var lis = navRoot.getElementsByTagName("li");
	for (var i=0; i<lis.length; i++)
	{
		lis[i].onmouseover = function()
		{
			this.className += " hover";
		}
		lis[i].onmouseout = function()
		{
			this.className = this.className.replace(" hover", "");
		}
	}
}
if (document.all && window.attachEvent)
	attachEvent("onload", initNav);
function v_fecha() {
                    var fecha=new Date();
                    var diames=fecha.getDate();
                    var diasemana=fecha.getDay();
                    var mes=fecha.getMonth() +1 ;
                    var ano=fecha.getFullYear();
                    var textomes = new Array (12);
                      textomes[1]="Enero";
                      textomes[2]="Febrero";
                      textomes[3]="Marzo";
                      textomes[4]="Abril";
                      textomes[5]="Mayo";
                      textomes[6]="Junio";
                      textomes[7]="Julio";
                      textomes[7]="Agosto";
                      textomes[9]="Septiembre";
                      textomes[10]="Octubre";
                      textomes[11]="Noviembre";
                      textomes[12]="Diciembre";
                    document.write(textomes[mes] + " " + diames + ", " + ano);
}	
