var textosemana = new Array (7);
  textosemana[0]="Domingo";
  textosemana[1]="Lunes";
  textosemana[2]="Martes";
  textosemana[3]="Miercoles";
  textosemana[4]="Jueves";
  textosemana[5]="Viernes";
  textosemana[6]="Sabado";

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";




function getFecha(){
    var fecha=new Date();
    var diames=fecha.getDate();
    var diasemana=fecha.getDay();
    var mes=fecha.getMonth() +1 ;
    var ano=fecha.getFullYear();
    return  textosemana[diasemana] + ", " + diames + " de " + textomes[mes] + " de " + ano ;
}

/**
 * Realiza las validaciones sobre el formulario de contacto
 */
function validarConsulta(){
    var email=$("#email").val();
    var nombre=$("#nombre").val();
    var mensaje=$("#mensaje").val();
    if(!email || email==''){alert("Debe ingresar una casilla de email");return false;}
    if(!mensaje || mensaje==''){alert("Debe ingresar su consulta");return false;}
    if(!nombre || nombre==''){alert("Ingrese un nombre de contacto");return false;}
    return true;
}
