// JavaScript Document
function iniBusqueda(){
	document.getElementById('search_query').value = "";
}
function endBusqueda(){
	document.getElementById('search_query').value = "Buscar producto...";
}

function obtiene_fecha() {
                var fecha_actual = new Date()
                var diasemana=fecha_actual.getDay();
                var dia = fecha_actual.getDate()
                var mes = fecha_actual.getMonth() + 1
                var anio = fecha_actual.getFullYear()
var textosemana = new Array (7); 
  textosemana[0]="Domingo";
  textosemana[1]="Lunes";
  textosemana[2]="Martes";
  textosemana[3]="Mi&eacute;rcoles";
  textosemana[4]="Jueves";
  textosemana[5]="Viernes";
  textosemana[6]="S&aacute;bado";
                if (mes < 10)
                               mes = '0' + mes
                if (dia < 10)
                               dia = '0' + dia
                return (textosemana[diasemana] + " " + dia + " / " + mes + " / " + anio)
}
function MostrarFecha() {

   document.write ( obtiene_fecha() )

}
/*
function contenedor_slideric(){
	document.write('<script type="http://www.climamania.com/js/jquery.nivo.slider.pack.js"></script>');
	//document.getElementById('contenedor_slideric').style.visibility = visible;
}*/
