﻿$(document).ready(
function() {
    //новости и статьи на странице компании    
    $.each($(".divUserNews"),
    function() {
        var items = $(this).find(">div");
        if (items.length > 2) {
            items.filter(':gt(2)').hide(); //скрываем при старте
            $(this).find("#aShowAllNews").bind("click", function() {
                items.filter(':gt(2)').toggle();
                return false;
            });
        }
        else
            $(this).find("#aShowAllNews").hide();
    }
    );

    //скрытие лишних новостей и статей
    var showCount = parseInt(screen.width) >= 1280 ? 6 : 4; //кол-во показываемых элементов при старте
    if (showCount < 6) {
        $("div.news_item:gt(3)").hide();
        $("div.article_item:gt(3)").hide();
    }

    //показ/скрытие preview на стартовой стр. статей
    $.each($("#tdNewsRight #aShowAll"),
    function() {
        $(this).click(function() {
            if ($(this).parents("div.oneCategoryArticles").hasClass("active")) {
                $(this).parents("div.oneCategoryArticles").removeClass("active");
                $(this).parents("div.oneCategoryArticles").find("div.hiddn").hide();
                $(this).find("i").html("&darr;");
            }
            else {
                $(this).parents("div.oneCategoryArticles").addClass("active");
                $(this).parents("div.oneCategoryArticles").find("div.hiddn").show();
                $(this).find("i").html("&uarr;");
            }

        });
    });
}
);
