$(document).ready(function() {
  $(".collapsible_long").parent().parent().hide();
  $(".open .collapsible_short").parent().parent().hide();
  $(".open .collapsible_long").parent().parent().show();
  $(".collapsible_short").click(
    function(){ 
      $(this).parent().parent().hide("fast"); 
      $(this).parent().parent().next().show(
        "slow", 
        function() {
          if (jQuery.browser.msie) {
            this.style.removeAttribute('filter');
          }
        }
      ); 
      return false;
    }
  );
  $(".collapsible_long").click(
    function(){ 
      $(this).parent().parent().hide("fast"); 
      $(this).parent().parent().prev().show(
        "slow", 
        function() {
          if (jQuery.browser.msie) {
            this.style.removeAttribute('filter');
          }
        }
      ); 
      return false;
    } 
  );
});

