How to Scroll to an Element, which was animated with .switchClass?

How to Scroll to an Element, which was animated with .switchClass?

I got a rather annoying Problem: On my Website, there are some covers of CDs. I'm able to enlarge the covers via jQuery.switchClass.

Now I'd like to jump to the enlarged cover. But I don't get how.

Here's the Link to the Website: http://53333805.swh.strato-hosting.eu/reinhold/alt_2/disko.php

Here's the code:

  1. <script> 
  2. $(function() { 
  3.       $("a.cd").click(function(event) { 
  4.             $( ".cd-klein" ).switchClass( "cd-klein", "cd-gross", 1200, "easeInOutQuint" ); 
  5.             $( ".cd-beschreibung" ).toggleClass( "cd-da", 700); 
  6.             $( ".cd-gross" ).switchClass( "cd-gross", "cd-klein", 1200, "easeInOutQuint" ); 
  7. return false; 
  8. }); 
  9. }); 
  10. </script>


An the HTML-Markup:

<!--CD 1--> <a class="cd" href="#1"> <div class="cd-beschreibung"> <div class="cd-name">Reinhold Friedrich</div> <div class="cd-besetzung"> großes Kammerorchester<br /> <br /> Leitung: Claudio Abbado </div> <div class="cd-kaufen">hier zu kaufen</div> <div class="clear-right"></div> </div> <img id="1" class="cd-klein" src="images/disko/beispiel1.jpg"> </a>

The other CDs a similar to the "CD1".

Thanks for any help!

Regards, Stefan