jQuery.fn.fadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle'}, speed, easing, callback);  
};

$(document).ready(function() {
    $('#tellfriend').hide();
    $('#actions a.email_link, a.close').click(function() {
    $("#tellfriend").fadeToggle('slow');
  });
}); 
