jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$(document).ready(function() {

    $.preloadImages("images/RADIO_RC_CLARO.gif","images/RC_NEWS_CLARO.gif","images/RC_WELLNESS_CLARO.gif","images/RC_MIDIA_CLARO.gif","images/VOCE_SABIA_CLARO.gif");

	$("#btEnviar").click(function(e) {
		e.preventDefault();
		idOpcao = $("input:radio[name=opcao]:checked").val();
		if (idOpcao != null) {
			$.post("processa_enquete.php", $("#frmEnquete").serialize(), function(data){
				if (data.erro == 0) {
					$("#divenquete").html(data.html);
                    alert("Seu voto foi computado com sucesso!\nA Razões do Corpo agradece sua participação.")
				}
				else {
					alert(data.html);
				}
					
			},"json");
		}
		else {
			alert("Por favor, selecione uma opção.");
		}
	});

    // manipula a troca de imagens dos botões laterais
    $("#radio_rc").mouseover(function(e){
        this.src = "images/RADIO_RC_CLARO.gif";
    });
    $("#radio_rc").mouseout(function(e){
        this.src = "images/RADIO_RC.gif";
    });

    $("#RCEsporte").mouseover(function(e){
        this.src = "images/rc_esporte_claro.gif";
    });
    $("#RCEsporte").mouseout(function(e){
        this.src = "images/rc_esporte_cinza.gif";
    });

    $("#RCNews").mouseover(function(e){
        this.src = "images/RC_NEWS_CLARO.gif";
    });
    $("#RCNews").mouseout(function(e){
        this.src = "images/RC_NEWS.gif";
    });

    $("#RCWellness").mouseover(function(e){
        this.src = "images/RC_WELLNESS_CLARO.gif";
    });
    $("#RCWellness").mouseout(function(e){
        this.src = "images/RC_WELLNESS.gif";
    });
    
    $("#RCMidia").mouseover(function(e){
        this.src = "images/RC_MIDIA_CLARO.gif";
    });
    $("#RCMidia").mouseout(function(e){
        this.src = "images/RC_MIDIA.gif";
    });

    $("#VoceSabia").mouseover(function(e){
        this.src = "images/VOCESABIA_CLARO.gif";
    });
    $("#VoceSabia").mouseout(function(e){
        this.src = "images/VOCESABIA.gif";
    });
    
    $("#EquipeRC").mouseover(function(e){
        this.src = "images/EQUIPE_RC_CLARO.gif";
    });
    $("#EquipeRC").mouseout(function(e){
        this.src = "images/EQUIPE_RC.gif";
    });

});

