$(document).ready(function() {
    if ( $.browser.msie ) {
        $('img').each(function(){
            $(this).attr('title', $(this).attr('alt'));
        });
    }
    $(".title > a > img").hover(function(){
        // Hover
        var res = $(this).attr('src').match(/\/i\/logos\/(.*)\.(.{3})/);
        if(res[1] != 'title_medal')
            $(this).attr('src','/i/logos/' + res[1] + '_active.' + res[2]);
    }, function(){
        // Out
        var res = $(this).attr('src').match(/\/i\/logos\/(.*)\_active\.(.{3})/);
        if(res[1] != 'title_medal')
            $(this).attr('src','/i/logos/' + res[1] + '.' + res[2]);
    });
    var tab = 1;
    if(tab = document.location.hash.match(/^#open-([0-9])$/))
        $("#tabs").tabs({
            selected: tab[1],
            select: function(event, ui) {
                document.location = '/#open-'+tab[1];
            }
        });
    else
        $("#tabs").tabs({
            selected: 1,
            select: function(event, ui) {
                id = ui.tab.hash.match(/^#tab-([0-9])$/);
                document.location = '/#open-'+id[1];
            }
        });
    $(".main_content").css('visibility', 'visible');
//$(".leftMiscContainer").height(Math.round($(window).height()/3));
//$(".col-wrap1, .col-wrap2, .col1").css('height', '100%')
});
