

$( document ).ready( function() {
  
  $( '#showFormSendToFriend' ).click( function() {
    $( '#sendToFriend' ).fadeIn( 500 );
    $( '#showFormSendToFriend').fadeOut( 500 );
  } );
  
} );



