jQuery(document).ready(function(){
  jQuery('div.csc-frame-frame1').find('div[class*=csc-textpic]').hide();
  jQuery('div.csc-frame-frame1').css('cursor','pointer');
  jQuery('div.csc-frame-frame1').click(function(){
    /* optionen:
    - mehrere elemente offen: ".not(jQuery(this))" entfernen
    - statt fadeToggle kann auch toggle oder slideToggle verwendet werden    
    */
    jQuery('div.csc-frame-frame1').not(jQuery(this)).find('div[class*=csc-textpic]').hide(200);
    jQuery(this).find('div[class*=csc-textpic]').fadeToggle(200).css("marginLeft",20);
  });
});
