jQuery(document).ready(function(){

    jQuery("a.sendtofriend").prettyPopin({width: 600, opacity: 0.5,closeText: 'Fermer'})
    jQuery(".prettyPopin form").unbind('submit');

    jQuery('#send_to_friend_form').live('submit' ,function(e){
        e.preventDefault();
        var url = jQuery('#send_to_friend_form').attr('action');
        var current_url = location.href;
        var params = jQuery('#send_to_friend_form').serialize()+"&url="+current_url;
        jQuery.post(url, {params: params}, updateData, 'html');
    });

});

function updateData(data){
    if(data){
        jQuery('#sendtofriend-popin #texte').html(data);
    }
}

