function muestraReloj()
{
    if (!document.layers && !document.all && !document.getElementById) return;
    var fechacompleta = new Date() ;
    var horas = fechacompleta. getHours() ;
    var minutos = fechacompleta. getMinutes() ;
    var segundos = fechacompleta. getSeconds() ;
    var mt ="AM";
    if (horas > 24) {
    mt ="PM";
    horas = horas - 24;
    }
    if (horas == 0) horas = 24;
    if (minutos <= 9) minutos = "0" + minutos;
    if (segundos <= 9) segundos = "0" + segundos;

    //fuikasreloj =  horas + " : " + minutos + " : " + segundos + " " + mt;
    fuikasreloj =  horas + ":" + minutos;
    if (document.layers) {
    document.layers.spanreloj.document.write(fuikasreloj);
    document.layers.spanreloj.document.close();
    }
    else if (document.all) spanreloj.innerHTML = fuikasreloj;
    else if (document.getElementById)
    document.getElementById("spanreloj").innerHTML = fuikasreloj;
    setTimeout ("muestraReloj()", 1000);
}

jQuery(function() {
	$('#featured').cycle({
		fx: 'scrollLeft',
		speed: 700,
		timeout: 12000
    });
});
