// JavaScript Document


// FACEBOX
jQuery(document).ready(function($) {
    $('a[rel*=facebox]').facebox()
}) 

function Abrir(strMensagem)
{
	$(document).ready(function(){
		 jQuery.facebox(strMensagem);
	})
}

//Carousel
jQuery.easing['BounceEaseOut'] = function(p, t, b, c, d) {
	if ((t/=d) < (1/2.75)) {
		return c*(7.5625*t*t) + b;
	} else if (t < (2/2.75)) {
		return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
	} else if (t < (2.5/2.75)) {
		return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
	} else {
		return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
	}
};

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
		scroll: 4,
        easing: 'BounceEaseOut',
        animation: 1000
    });
});

/*CAMPO SELECT*/
$(document).ready(function(arg) {
	$(".campo3 select").msDropDown();

});



/*MASK DATA*/
jQuery(document).ready(function($) { 
    $('#txtHoraInicialBox2').mask("99:99");
    $('#txtHoraFinalBox2').mask("99:99");
    $('#txtVisitaHorarioInicial').mask("99:99");
    $('#txtVisitaHorarioFinal').mask("99:99");
    $('#txtVisitaData').mask("99/99/9999");
    $('#txtDDD').mask("(99)");
    $('#txtTelefone').mask("9999-9999");
    $('#txtTrabCPF').mask("999.999.999-99");
    $('#txtTrabCEP').mask("99.999-999");
    $('#txtTrabNasc').mask("99 / 99 / 9999");
    $('#txtTrabTelDDD').mask("(99)");
    $('#txtTrabTelefone').mask("9999-9999");    
    $('#txtTrabCelDDD').mask("(99)");
    $('#txtTrabCelular').mask("9999-9999");    
    $('#txtCompDDD').mask("(99)");
    $('#txtCompTelefone').mask("9999-9999");    
		$('#txtTelDetail').mask("(99) 9999-9999");  
});

/*ABRIR BOX COMBO*/
function abrirBox(abrir){
	
	document.getElementById('box_1').style.display='none';
	document.getElementById('box_2').style.display='none';
	document.getElementById('box_3').style.display='none';
    document.getElementById('erroAssunto').style.display = 'none';

	if(abrir == "2")
	{
		document.getElementById('box_1').style.display='block';
	}
	else if(abrir == "3")
	{
		document.getElementById('box_2').style.display='block';
	}
	else if(abrir == "4")
	{
		document.getElementById('box_3').style.display='block';
	}

}


/*UPLOAD FILE*/
 
$(function file() {
            
      $("input.file_1").filestyle({ 
          image: "images/bg_input_upload.jpg",
          imageheight : 21,
          imagewidth : 68,
          width : 100
      });     
  });

/*COLAPSE - MAPA DO SITE*/

$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $("#nivel2").hide();
  //toggle the componenet with class msg_body
  $(".msg_head").click(function()
  {
    $(this).next("#nivel2").slideToggle(300);
  });
 /* 
  $(".txtbuscapalavra").focus(function () {
	 $(this).css('background','#325F7C	');
});
*/
  
});

$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $("#nivel3").hide();
  //toggle the componenet with class msg_body
  $(".msg_head2").click(function()
  {
    $(this).next("#nivel3").slideToggle(300);
  });
});





