$(function(){

  /* ----- Pesquisa ----- */
  $("#pesquisa input").focus(function(){
    var valor = $(this).attr('value');
    var valor_padrao = $(this).attr('rel');

    if(valor == valor_padrao) $(this).val('');
  });    
  $("#pesquisa input").blur(function(){
    var valor = $(this).attr('value');
    var valor_padrao = $(this).attr('rel');

    if(valor == '') $(this).val(valor_padrao);
  });


  /* ----- Formulário de Newsletter ----- */
  $('.labeled').focus(function(){
    valorPadrao = $(this).attr('title');
    valor = $(this).val();
    if(valor == valorPadrao){
      $(this).val('');
    }
  }).blur(function(){
    valorPadrao = $(this).attr('title');
    valor = $(this).val();
    if(valor == ''){
      $(this).val(valorPadrao);
    }
  });


  /* ----- Formulário de Newsletter Ajax ----- */
  $('#newsletter-mostra').hide();
  $('#newsletter-carregando').hide();

  $('#btn-enviar-footer').live('click', function(){
    $('#newsletter-mostra').html('');
    $('#newsletter-mostra').hide();
    $('#newsletter-carregando').fadeIn();

    $.post('newsletter', {
      name: $('#campo-nome').val(),
      email: $('#campo-email').val()
    }, function(response){
      $('#newsletter-carregando').hide();
      $('#newsletter-mostra').html(response);
      $('#newsletter-mostra').fadeIn();
    });
  });


  /* ----- Banner Home ----- */
  $("#foto-texto ul").cycle({
    pager: '.navegacao'
  });
});

Shadowbox.init({
  language: 'pt-BR',
  players: ['img']
});
