$(document).ready(function(){
    var tabs_top = $('.b-tabs_what_top .b-tabs__item'),
        tabs_bottom = $('.b-tabs_what_bottom .b-tabs__item');
    tabs_top.click(function(){
        var self = $(this)
        toggleBlocks_top(self.find('.b-tabs__link')[0])
        tabs_top.removeClass('b-tabs__current');
        $(this).closest('.b-tabs__item').addClass('b-tabs__current')
    }).find('a').click(function(){
        $(this).closest('.b-tabs__item').click()
        return false;
    })
    $('.b-tabs__item-1').click();

    tabs_bottom.click(function(){
        var self = $(this)
        toggleBlocks_bottom(self.find('.b-tabs__link')[0])
        tabs_bottom.removeClass('b-tabs__current');
        $(this).closest('.b-tabs__item').addClass('b-tabs__current')
    }).find('a').click(function(){
        $(this).closest('.b-tabs__item').click()
        return false;
    })
    $('.b-tabs__item-one').click();
    
});
function toggleBlocks_top(a) {
    $('#block-2,#block-1, #block-3, #block-4').hide();
    $('#block-' + (a.hash.substr(1) || '1')).show()
    return false;
}

function toggleBlocks_bottom(a) {
    $('#block-' + (a.hash.substr(1) || 'one')).show();
    $('#block-one,#block-two').filter(':not('+'#block-' + (a.hash.substr(1) || 'one') + ')').hide();
    return false;
}

