$(document).ready(function() {
    $("div[id^=clients_block]").hover(
        function() {
            var links = $(this).find(".links");
            var show = false;
            links.each(function() {
                if ($(this).children().length > 0) show = true;
            });
            if (show) {
                $(this).find(".links").animate({
                    height: "show"
                }, 600);
            }
        },
        function() {
            $(this).find(".links").animate({height:"hide"}, 600);
        }
    );
    $(".links a.http").mouseover(function(){
        $(this).parent().css("background", "url('/img/guide1.gif') no-repeat 0px 6px");
    });
    $(".links a.primer").mouseover(function(){
        $(this).parent().css("background", "url('/img/guide.gif') no-repeat 0px 6px");
    });
    $(".links a.otziv").mouseover(function(){
        $(this).parent().css("background", "url('/img/guide2.gif') no-repeat 0px 6px");
    });
    $(".links a.primer, .links a.otziv, .links a.http").mouseout(function(){
        $(this).parent().css("background", "#fff");
    });
});
