$(document).ready(function(){

  /*bibliography page*/
  $('.list_text').hide();
  $('.click_header').live('click',function(){

    var first_id = '#' + $(this).attr('id');
    var text_id = '#' + $(this).attr('id') + '_text';

    if ($('div:first',first_id).hasClass('arrows_down')){
      $(text_id).slideDown(600, function(){
         $('div:first',first_id).removeClass('arrows_down').addClass('arrows_up');
      });
    }else{
      $(text_id).slideUp(600, function(){
         $('div:first',first_id).removeClass('arrows_up').addClass('arrows_down');
      });
    }



  });


});