<!--  initialize the slideshow when the DOM is ready -->
$(document).ready(function() {
    $('.promociones').cycle({
fx: 'fade',
speed:500, //The speed option defines the number of milliseconds it will take to transition from one slide to the next.
timeout:5000,//The timeout option specifies how many milliseconds will elapse between the start of each transition.
pause:  1,
pager:  '#nav',
slideExpr: 'img' 
});
});

$(document).ready(function() {
    $('.banners1').cycle({
fx: 'scrollDown',
speed:500,
timeout:5000,
pause:  1,
easing: 'bounceout', 
delay:  -2000
});
});


// Here we are over-writing the variables locally.
var wimpyButtonImagePlay= "http://www.lasabrosita.fm/wimpy/b_play.png";
var wimpyButtonImagePause= "http://www.lasabrosita.fm/wimpy/b_pause.png";


// Validacion Encuesta.
function validate_form ( )
{
    valid = true;

   if ( ( document.encuesta.resultadoencuesta[0].checked == false ) && ( document.encuesta.resultadoencuesta[1].checked == false ) && ( document.encuesta.resultadoencuesta[2].checked == false ) && ( document.encuesta.resultadoencuesta[3].checked == false ) && ( document.encuesta.resultadoencuesta[4].checked == false ) && ( document.encuesta.resultadoencuesta[5].checked == false ) && ( document.encuesta.resultadoencuesta[6].checked == false ) && ( document.encuesta.resultadoencuesta[7].checked == false ) && ( document.encuesta.resultadoencuesta[8].checked == false ) && ( document.encuesta.resultadoencuesta[9].checked == false ))
    {
        alert ( "Selecciona una cancion para votar." );
        valid = false;
    }

    return valid;
}



// Validacion Formulario Navidad
function validar_navidad(form) {

// check nombre
if (document.forms.registronavidad.elements.nombre.value == "")
{
alert ("Es necesario escribir su nombre.");
return false;
}

if (document.forms.registronavidad.elements.email.value == "")
{
alert ("Es necesario escribir su email.");
return false;
}

if (document.forms.registronavidad.elements.direccion.value == "")
{
alert ("Es necesario escribir el nombre de su Colonia.");
return false;
}

if (document.forms.registronavidad.elements.ciudad.value == "")
{
alert ("Es necesario proporcionar su ciudad.");
return false;
}

if (document.forms.registronavidad.elements.estado.value == "null")
{
alert ("Es necesario proporcionar el estado donde radica.");
return false;
}

return(true);
}

function PopupCenter(pageURL, title,w,h) {
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}

