$(document).ready(function() {
		$('#divisor').text(fecha());
		$("#home").click(function(){window.location.replace("/");});
		$("#empresa").click(function(){window.location.replace("empresa.php");});
		$("#servicios").click(function(){window.location.replace("servicios.php");});
		$("#infonotas").click(function(){window.location.replace("infonotas.html");});
		$("#Informes").click(function(){window.location.replace("informes.html");});
		$("#enlaces").click(function(){window.location.replace("enlaces.html");});
		
  });
function fecha(){
	var d = new Date();	
	var curr_date = d.getDate();
 	var curr_month = d.getMonth() + 1; 
  	var curr_year = d.getFullYear();
	return "Bienvenido hoy es: "+curr_date+"/"+curr_month+"/"+curr_year;
}

