/*  
  
  jQuery("a.author_modal").click( function () {
      var sp = jQuery(this).next();
      if(sp.css('display') == 'none') {
          sp.fadeIn('fast');
      } else {
          sp.fadeOut('fast');
      }
  });
  
  function toggleDiv(divid){
    if(document.getElementById(divid).style.display == 'none'){
      jQuery('#'+divid).fadeIn('fast');
    }else{
      jQuery('#'+divid).fadeOut('fast');
    }
  }
*/
