$(document).ready(function() {
  $("[rel*=submit_form]").livequery('click', function() {
    if($('#info').val() == "") {
      $('#mensagem').html('Tem de escolher alguma oportunidade!');
      return false;
    }
    
    if($('#amigo_email').val() == "") { 
      $('#mensagem').html('E-mail de preenchimento obrigatório!');
      return false;
    }
      
    $('#mensagem').html('A enviar email...');
    $.post('/enviar_amigo', $('#form_amigo').serialize(), function(data) {
      if(data == "1"){
        $('#mensagem').html('E-mail enviado com sucesso!');
      }else{
        $('#mensagem').html('E-mail de preenchimento obrigatório!');
      }
    });
    return false;
  });
  
  $("[rel*=reset_form]").livequery('click', function() {
    $('#email').val('');
    $('#info').val('');
    $('#drop_zone').html('');
    return false;
  });
  
  $("[rel*=enviar_amigo]").livequery('click', function() {
    op_title = $(this).attr('title');
    op_id = $(this).attr('href');

    op_html = "<strong> + "+op_title+"</strong><br />";
    
    if($('#info').val() == "") {
      $('#info').val(op_id);      
    }
    else {
      $('#info').val($('#info').val()+","+op_id);
    } 

    $('#drop_zone').append(op_html);
    return false;
  });
});