function show_hide_block(obj){   var jq = jQuery(obj).parent().parent().parent().find('.show_hide');
   if (jq.css('display') == 'none') {      if (!jQuery.browser.msie){
         jq.slideDown("slow", function(){            jQuery(obj).text("свернуть");
            jQuery(obj).removeClass("down").addClass("up");
         });
      }
      else {
         jq.show();
         jQuery(obj).text("свернуть");
         jQuery(obj).removeClass("down").addClass(" up");
      }
   }
   else {      if (!jQuery.browser.msie){
         jq.slideUp("slow", function(){            jQuery(obj).text("развернуть");
            jQuery(obj).removeClass("up").addClass("down");
         });
      }
      else {         jq.hide();
         jQuery(obj).text("развернуть");
         jQuery(obj).removeClass("up").addClass(" down");
      }

   }}