Drupal.behaviors.newtech = function(context) {
    
    // Надпись на кнопке поиска
	$('#search-theme-form:not(.newtech-processed)', context).find(".form-submit").val("");
	
	$('#content_left .content span.comment a').hover(
        function () {
            $(this).parent('span').addClass('hover');
        },
        function () {
            $(this).parent('span').removeClass('hover');
        }
	);
	
    // Скрол в блоках выбора фильтра
    $(function() {
        $('#content #content_right .block-eda27 .content ul').jScrollPane({showArrows:true, scrollbarWidth:19, dragMaxHeight:41, dragMinHeight:41});
    });
    
    $('#content #content_left .block-eda27 h2').click( function () {
        var display = $(this).parent('div').children('.content').children('.hidden_pup').css('display');
        if (display == 'none') {
            $(this).parent('div').children('.content').children('.hidden_pup').show(500);            
        } else {
            $(this).parent('div').children('.content').children('.hidden_pup').hide(500);
        }

    });

}
