jQuery(document).ready(function() {

	jQuery("#btn-reset").val("");
	
	jQuery("#dialog-termo-responsabilidade").dialog({
		title: 'Termo de Responsabilidade',
		autoOpen: false,
		bgiframe: true,
		modal: true,
		resizable: false,
		draggable: false,				
		buttons: {
			Ok: function() {
				jQuery(this).dialog('close');
			}
		}
	});
	
	jQuery("#link-termo-responsabilidade").click(function() {
		jQuery("#dialog-termo-responsabilidade").dialog('open');
		return false;
	});
	
	jQuery("#dialog-novasenha").dialog({
		bgiframe: true,
		modal: true,
		resizable: false,
		draggable: false				
	});

});

/*
	Script que faz a mudança do email que receberá o contato quando o campo RG
	(Destino) for um Combo Box
*/
function mudarEnviarPara() {
	var destino = jQuery("select[name='rg']").val().toLowerCase();
	var email = 'jfl@jfl.com.br';
	
	if (destino == 'comercial') {
		email = 'jfl@jfl.com.br';
	}
	if (destino == 'suporte ao cliente') {
		email = 'suporte.jfl@jfl.com.br';
	}
	
	jQuery("input[name='enviarPara']").val(email);													
}
