fadeTo() on whole paragraph but one word

fadeTo() on whole paragraph but one word

I have a div with some content in it, within the content there's an anchor and when you click it all the content but the anchor itself should fadeTo('slow', 0.2);

What I have now is;

  1. $("p a#somelink").click(function()
  2. {
  3.       $(this).parent().parent().children("p").fadeTo("slow", 0.2);
  4.       return false;
  5. });
Which obviously just fades all paragraphs. Is it possible to do what I want and with which selection string would I achieve it?