/**
jQuery('document').ready(function($){
  $('.expandable').expander({
    slicePoint:       900,
    expandText:       'Erfahren Sie mehr',
    userCollapseText: 'Ausblenden'
  });
});
**/
jQuery('document').ready(function($) {  

  function seo_expand() {
    paras.each(function(index, item) {
      $(this).show();
    });
    $('.read-more a').html('Ausblenden');
    $('.read-more').click(function() {
      seo_collapse();
      return false;
    });
  }
  
  function seo_collapse() {
    paras.each(function(index, item) {
      if (index > 0) {
        $(this).hide();
      }
    });
    $('.read-more a').html('Erfahren Sie mehr');
    $('.read-more').click(function(){
      seo_expand();
      return false;
    });
  }

  $('.expandable').append('<span class="read-more"><a href="#">+++</a></span>');

  paras = $('.expandable p');
  
  seo_collapse();
});
