jQuery(function($){
  // Screenshots Lightbox
  $('#screenshots a[rel="screenshots"]').fancybox();
  
  // Validação do form
  $('#form-contato').submit(function(){
    $('#form-error').html('');
    
    var erro = false;
    $('#nome, #empresa, #estado, #telefone, #email, #origem, #mensagem').each(function(){
      if ($.trim($(this).val()) == '') {
        $(this).focus();
        $('#form-error').html('Por favor, preencha o campo ' + $(this).attr('id'));
        erro = true;
        return false;
      }
    });
    
    return !erro;
  });
});
