  jQuery(document).ready(function()
  {
    jQuery('#hdd').hide();
    // Для клиентов
  jQuery(".Item a.Item-Toggle").click(function()
    {
      jQuery(this).parent().parent().find(".Item-Content").slideToggle("slow");
      jQuery(this).parent().toggleClass("Open");
    });

    // загогули в меню и у новостей
    jQuery(".BB_Zagogulya").BB_Zagogulya();
    jQuery("#Main .left#Navi-Left .active").BB_Zagogulya();
    
    // Увеличиваем картинки
    jQuery(".PRJ-Image-List a").click(function()
    {
      jQuery("#Content .PRJ-Image-Big a").css("height", jQuery("#Content .PRJ-Image-Big img").height());
      jQuery("#Content .PRJ-Image-Big a").attr("href", jQuery("#b" + jQuery(this).attr("id")).attr("href"));
      
      jQuery("#Content .PRJ-Image-Big img").hide();
      jQuery("#Content .PRJ-Image-Big img").attr("src", jQuery(this).attr("href"));
      
      jQuery("#Content .PRJ-Image-Big img").load(function(){
        ImgHeight = jQuery(this).height();
        ImgWidth  = jQuery(this).width();
//        jQuery("#Content .PRJ-Image-Big").attr("height", ImgHeight);
//        jQuery("#Content .PRJ-Image-Big").attr("width",  ImgWidth);

        jQuery("#Content .PRJ-Image-Big a").css("height", ImgHeight);
//        jQuery("#Content .PRJ-Image-Big a").css("width",  ImgWidth);
        
        jQuery("#Content .PRJ-Image-Big img").show().fadeTo("slow", 1);
      });

      return false;
    });

  });

