      
$(function(){
  
      $('#clickImpress').click(function(){
        window.print();
      });
      
      
      $('li#nossas-emps a').mouseover(function(){
        $(this).parent().find('ul#subnav').show();
      });
      
      $('li').hover(function(){},
        function(){
          $(this).find('ul#subnav').hide();
        } 
      );
      
      
      $('#target').submit(function(){
          var tempNome = $('input:text[name=nome]').val();
          var tempEmail= $('input:text[name=email]').val();
          var tempMsg  = $('textarea[name=mensagem]').val();
          var tempSel  = $('select[name=encaminhar] option:selected').val();
          
          //alert(tempSel);
          
          $.post('send.php',{ nome: tempNome,email:tempEmail,msg:tempMsg,setor:tempSel },function(data){
            alert(data);
          });
          
          $('input:text[name=nome]').val('');
          $('input:text[name=email]').val('');
          $('textarea[name=mensagem]').val('');
          $('select[name=encaminhar] option:eq(0)');
          return false;

        
      });
});


