/*
    Document   : js
    Created on : 24/11/2011
    Author     : Ismael Tiago Pereira
    Description:
        JavaScript para o portal missbeijinho.com.br
*/
$(document).ready(function(){
    // LINKS EXTERNOS
    $('a.target_blank').click(function(){ window.open($(this).attr('href')); return false; });
    // PARTICIPE
    $('#form_participe').submit(function(){
        $.post("b.php", $(this).serialize() , function(data){
            var retorno = data.split("|");
            alert(retorno[1]);            
            if(retorno[0] == 'true'){
                $('.input_text, textarea').val("");
            }
        });
        return false;
    });    
});
