 /*
 **
 **
 **
 **
 */
 
$(function(){
	
	$('.tb-doa tr:odd').addClass('line');
	
	// TARGETS BLANK
	$('.blank').attr('target','blank');
	
	// LABELS
	$(":text").labelify();
	$("textarea").labelify();
	
	//LIGHTBOX
	$('.list-gal a').lightBox();
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal',
		padding: 40,
		opacity: 0.35,
		showTitle: false,
		allowresize: true,
		counter_separator_label: ' de '
	});		
	
	// SUB-MENU
	$('#side-nav li').click(function(){
		$(this).children('ul').toggle();
		$(this).children('img').toggle();
	});
	$('#side-nav li').mouseover(function(){
		$(this).children('img').show();
	});
	$('#side-nav li').mouseout(function(){
		$(this).children('img').hide();
	});		
	
	//LAYER ESQUECI MINHA SENHA
	$('#bt-forgot').click(function(){
		$('#form-log').hide();
		$('#form-esq').show();
	});
	
/*	
	$('#bt-env-sen').click(function(){
		//$('#form-log').show();
		$('#form-esq').hide();
		return false;
	});	
*/
	
	//$(".sel-box").selectbox();
	
	// MASK FIELDS
	//$('.valor').mask('R$ 9999');
	
	$('.notes').jScrollPane({showArrows:true});	
	
	//$('.notes').jcarousel({
		/*vertical: true,
		scroll: 2*/
	//}); 

	// Cadastro
	$("#t-juridica").attr("checked", "checked");
	$("#field-tipo input").click(function(){
		var tipo = $(this).val();
		$("#form-cadastro .fields").hide();
		if (tipo === "2") {
			$("#field-juridica").show();
		} else {
			$("#field-fisica").show();
		}
	});
	
});

// valida e-mail
var validaEmail = function(s) {
	var regexpEmail = /\w{1,}[@][\w\-]{1,}([.]([\w\-]{1,})){1,3}$/;
	return regexpEmail.test(s);
}; // fim validaEmail

var emailCadastrado = function( email, cod_cadastros )
{
	$.post("_inc/verifica_email.ajax.php",{email:email,cod_cadastros:cod_cadastros},function(data){
		if( data == 'DUPLICADO' ) {
			alert( 'E-MAIL JÁ CADASTRADO NO SISTEMA!' );
			$('#f-email').val('');
			$('#j-email').val('');
		}
	});
	return false;	
};