/**
 * @author eduardop
 */

$('document').ready(function(){
		$('#loading').hide(); 
        $('#cotar_frete').click(function(){
                $('#loading').ajaxStart(function(){
                       
                        $('#loading').show();   
                });
                $('#loading').ajaxStop(function(){
                        $('#loading').hide();   
                });
                $.post('includes/calcula_frete.php',{
					
				cep1: $('#cep1').val(),
				cep2: $('#cep2').val(),
				nVlPeso: $('#nVlPeso').val(),
				nVlValorDeclarado: $('#nVlValorDeclarado').val()
				
				},function(data){
                    $('#alvo').show();
                    $('#alvo').empty().html(data);
                }
                );
        });
});	

$('document').ready(function(){
		$('#loading').hide(); 
        $('#gravar_aviso').click(function(){
                $('#loading').ajaxStart(function(){
                        $('#loading').show();  
						$('#email').hide();   
						$('#gravar_aviso').hide();  
                });
                $('#loading').ajaxStop(function(){
                        $('#loading').hide();   
                });
                $.post('includes/gravar_aviso.php',{
					
				id_produto: $('#id_produto').val(),
				email: $('#email').val()
				
				},function(data){
                    $('#alvo').show();
                    $('#alvo').empty().html(data);
                }
                );
        });
});	

$('document').ready(function(){
		$('#loading').hide(); 
        $('#enviar_mensagem').click(function(){
                $('#loading').ajaxStart(function(){
                        $('#loading').show();  
						$('#enviar_mensagem').hide();  
						$('#mensagem_resposta').hide(); 
                });
                $('#loading').ajaxStop(function(){
                        $('#loading').hide();   
						$('#enviar_mensagem').show();
                });
                $.post('includes/enviar_mensagem.php',{
					
				nome_msg: $('#nome_msg').val(),
				email: $('#email').val(),
				telefone: $('#telefone').val(),
				mensagem: $('#mensagem').val()
				
				},function(data){
                    $('#alvo').show();
                    $('#alvo').empty().html(data);
                }
                );
        });
});	

/*
$(document).ready(function() {
	$("#link_atendimento_msn").hover(function(){
		$("#atendimento_on_line").fadeIn('fast');
	}, function() {
		$("#atendimento_on_line").hover(function(){
			$("#atendimento_on_line").fadeIn('fast');
		}, function() {
			$("#atendimento_on_line").fadeOut('fast');
		});	
	}); 		
});	
*/

function get(id){
	return document.getElementById(id);
}

function validaCartao(){
	if(get('pagamento_cartao').value == 1){
		if(get('numero_cartao').value.length == 0 || get('cod_cartao').value.length == 0 || get('dia_cartao').value.length == 0 || get('ano_cartao').value.length == 0){
			get('msg').innerHTML='Faltaram dados obrigatórios a serem preechidos';
			return false;
		}		
	}
}
$('document').ready(function(){
	$('.alerta_frete').click(function(){
		$('div#msg_frete').show();
	});
});

$(document).ready(function(){
	if($('#icones_formas_pagamento').length){
		$('#deposito').live('click',function(){
			$('.type_check').hide();
			$('.type_credit').hide();
			$('.type_deposit').slideDown(1200);
		});
		$('#cheque').live('click',function(){
			$('.type_deposit').hide();
			$('.type_credit').hide();
			$('.type_check').slideDown(1200);
		});
		$('#credito').live('click',function(){
			$('.type_deposit').hide();
			$('.type_check').hide();
			$('.type_credit').slideDown(1200);
		});
	}
	
	if($('#new-user').length){
		$('#new-user').submit(function(){
			if($('#telefone_fixo').val() == null){
				alert('Por favor, preencha com um telefone fixo no campo Telefone');
				return false;
			}
		});
	}
	
});
