/*** jQuery lightBox plugin ***/
	$(document).ready(function(){

						$("#pagina-links ul li a").click(function()
						{
							var linkID = $(this).attr("class");
							alert (linkID)
							return false;
						});
					});

	
	
	
	//==========================================================================

	$(document).ready(function()
	{
		// AÇÃO QUE EXIBE OS RESULTADOS
		$('#enq_resultado').click(function()
		{
			$('#BlocoEnq').hide('slow', function()
			{
				$('#msgenquete').hide();
                $('#enqt_results').fadeIn('slow');
            });

		});


	//==========================================================================
	// ENQUETE VOTAR
    $('#enq_enviar').click(function()
	{
		if($('#enqt_results').is(':visible'))
		{
			$('#enqt_results').slideUp('slow', function()
			{
				$('#msgenquete').show();
                   $('#BlocoEnq').slideDown();
               });
				return false;
            }

            //===========================================

			if(!$('input:radio').is(':checked'))
			{
				alert('Selecione uma opção');
                return false;
            }

			//var inputopcao = $('input[type=radio]:checked').val();// opcao selecionada
			var data = $('#form-enquete').serialize(); // Dados do formulário

			$('#blocoopcoes').fadeOut('fast',function()
			{
				// ENVIANDO VOTO DA ENQUETE POR AJAX
                $.ajax({
                            type: "POST",
                            url: "home/enquete_ajax",
                            data: data,
							//data: 'codigo='+inputopcao+'&enqcod='+enqcod,
                            dataType: 'json',
                            beforeSend: function() {
                                $('#enq_enviar').parent().remove();
                                var img_loading = 'img/loader.gif';
                                $('#dados_enq').append('<div id="carregando"><img src="'+img_loading+'" alt="Enviando..."/><br/>Enviando...</div>');
                                $('#carregando').css({
                                    'padding-top':70+'px',
                                    'text-align':'center'
                                });
                            },
                            success: function(json){
                                $('#carregando').fadeOut('fast',function(){
                                    $(this).remove();
                                    if (parseInt(json.status)==1) {
                                        /*$.each(json.resultado.altp,function(i, v){
                                            var indexId = i+1;
                                            var vfloat = parseFloat(v);
                                            var wporc = parseInt((100*vfloat)/100); // CALCULANDO A PORCENTAGEM DE VOTOS
                                            $('#eqtbar div').css({'width':wporc+'px'});
                                            $('#eqtbar div').html(v+'%');
                                        });

										*///TOTAL DE VOTOS
                                        $('#resultados').html(json.resultado);
                                        $('#enqt_results').fadeIn('slow');
                                    }else{
                                        $('#dados_enq').find('b').html('Não foi possível enviar seu voto ao servidor, tente novamente mais tarde.')
                                    }
                                });
                            },
                            error: function (XMLHttpRequest, textStatus, errorThrown) {
                                $('#msgenquete').hide();
                                $('#carregando').fadeOut('fast',function(){
                                    $(this).remove();
                                    $('#dados_enq').find('b').html('Não foi possível enviar seu voto ao servidor, tente novamente mais tarde.')
                                });
                            }
                        });
                    });


                });
                //===========================================


            });


	//==========================================================================

	$(document).ready(function(){
		$('a#mapa').click(function(){
			window.open('mapa.php', '_blank', 'width=640, height=480')
			return false
		});
	});

	//==========================================================================

	$(document).ready(function(){
		$('a.radio').click(function(){
			window.open('radio.html', '_blank', 'width=640, height=480')
			//return false
		});
	});

	//==========================================================================

	/*$(document).ready(function(){
		$(window).modal({
			url:'http://visaomissionaria.br/home/lembrete', autoOpen:true, closeClickOut:false
		});
	});*/

	//$(document).ready(function(){
	//	$(window).modal({
	//		url:'http://visaomissionaria.br/application/views/mapa.php', autoOpen:true, closeClickOut:true
	//	});
	//});
