$(document).ready(function(){

  /** Value dos Inputs **/
  $('input, textarea').each(function () {
    if ($(this).val() == '' && $(this).attr('placeholder') != '') {
      $(this).val($(this).attr('placeholder'));
      $(this).focus(function () {
        if ($(this).val() == $(this).attr('placeholder')) {
          $(this).val(''); 
        }
      });
      $(this).blur(function () {
        if ($(this).val() == '') {
          $(this).val($(this).attr('placeholder'));
        }
      });
    }
  });
  
  if( $("#fale_conosco").length ){
  	$('.datepicker').datepicker($.datepicker.regional['pt-BR']);
  	$('#telefone').mask('(99) 9999-9999');
  }
});
