// [d] главный js файл

$(document).ready(function(){
    $('tbody tr:even').addClass('even');

    $('.articles h4').click(function(){
        $('.articles ul:not(.wholesale)').hide();
        $(this).next().show();
        return false;
    })

    $('.articles li').click(function(){
        $('.articles li p').hide();
        $('p',this).show();
        return false;
    });

	 $('.contact-link').click(function(e){
		 e.stopPropagation();
		 });

    $('.ans-que p.more').click(function(){
        if ($(this).next().css("display") != "none") {
            $(this).next().hide(); 
            $(this).html('<a href="#">Посмотреть ответ</a>');  
        } else {
            $(this).next().show();
            $(this).html('<a href="#">Закрыть ответ</a>');           
        }

        return false;
    })

    $('.cat .charact p').each(function(){
        var span_char1 = $('span.char1',this).width();
        var span_char2 = $('span.char2',this).width();
        $('span.line',this).width(510-span_char1-span_char2);
    })
    
    // [d] перебрасываю на полную статью
    $('.show_articles').click(function(){
        window.location = "/articles/art/"+$(this).attr('rel');
    });

    // [d] включить facebox
    //$('a.internal.facebox').facebox();

    // [d] показать выпадающий список
    $(".catalog").hover(
      function () {
        $('.sum_menu').fadeIn('slow');
      }
    );

    // [d] скрыть выпадающий список
    $(".menu").hover(
      function () {

      },
      function () {
        $('.sum_menu').fadeOut('slow');
      }     
    );
    
})


