$(function () {
    var tabContainers = $('div.tabs > div');
    tabContainers.hide().filter(':first').show();
    $('.games-block1 ul.ul li a').click(function () {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        hrca = tabContainers.filter(this.hash).height();
        $(".right-col-about").css({'top': -hrca - 120});
        return false;
    }).filter(':first').click();

    var tabContainers = $('div.tabs > div');
    tabContainers.hide().filter(':first').show();
    $('.menu-game ul.ul li a').click(function () {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        $('.menu-game ul.ul li a').removeClass('active');
        $(this).addClass('active');        
        return false;
    }).filter(':first').click();    
});
