$( function() {
  $( 'ul.clip' ).hide();

  $( 'div.advanced' ).hide().after(readmore_link = $( '<a href="#">Weiterlesen...</a>' ).click(function(e) {
    readmore_link.fadeOut( 400 );
    $( 'div.advanced' ).slideDown( 400 );
    return false;
  }));

  $( 'a.clip' ).show();

  $(document).delegate( 'a.clip', 'click', function(e) {
    $this = $(this);
    $this.parent().prev( '.clip:not(a)' ).slideToggle( "slow", function() {
      if( $(this).is( ':hidden' ) )
      {
        $this.text( 'Weitere...' );
        $this.css( { 'background-image' : 'url(/images/down.gif)' } );
      } else {
        $this.text( 'Weniger...' );
        $this.css( { 'background-image' : 'url(/images/up.gif)' } );
      }
    } );

    e.preventDefault();
  });

  $("a[rel=lightbox]").fancybox({
    'zoomSpeedIn': 600,
    'zoomSpeedOut': 300,
    'overlayShow': false,
    'zoomOpacity': true,
    'easingChange': 'swing',
    'centerOnScroll': true,
    'imageScale': true,
    'hideOnContentClick': true,
    'hideOnOverlayClick': true
  });

});
