jQuery fader for two contents - but how ?

jQuery fader for two contents - but how ?

Hi,
I want to fade two contents the same time on one page by clicking a teaser:
e.g. click on #teaser2 the contents in #backstage2 and #content2 are fading in the same time.

look at my html:
  1. <!-- backstage content is in a separate div -->
  2. <div id="backstage">
  3.     <div id="bigpicture1">

  4.         <img src="img1.jpg" width="800" height="600" />

  5.     </div>

  6.     <div id="bigpicture2">

  7.         <img src="img2.jpg" width="800" height="600" />

  8.     </div>

  9.     <div id="bigpicture3">

  10.         <img src="img3.jpg" width="800" height="600" />

  11.     </div> 

  12. </div>

  13. <!-- stage content is also in a separate div -->
  14. <div id="stage">

  15.     <div id="content1">

  16.         <h2>Loremipsum 1</h2>

  17.         <p>Nam liber tempor cum soluta nobis eleifend.<a href="#">mehr ...</a></p>

  18.     </div>

  19.     <div id="content2">

  20.         <h2>Loremipsum 2</h2>

  21.         <p>Nam liber tempor cum soluta nobis eleifend.<a href="#">mehr ...</a></p>

  22.     </div>

  23.     <div id="content3">

  24.         <h2>Loremipsum 3</h2>

  25.         <p>Nam liber tempor cum soluta nobis eleifend.<a href="#">mehr ...</a></p>

  26.     </div> 

  27. </div>



  28. <!-- teasers are in a separate div -->
  29. <div id="teaser">

  30.     <ul>

  31.         <li id="teaser1"><img src="img1_thumb.jpg" alt="" /></li>

  32.         <li id="teaser2"><img src="img2_thumb.jpg" alt="" /></li>

  33.         <li id="teaser3"><img src="img3_thumb.jpg" alt="" /></li>

  34.     </ul>

  35. </div>