$(function() {
    $('#tresc a').each(function () {
         var str = $(this).attr('href')
         if (str.indexOf("blank:") != -1) {
            str = str.replace("blank:", "");
            $(this).attr('href', str)
            $(this).attr('target', "_blank");
         }
    })

    $('#glowneLinki img:last').hide();
    $('#menuBoczne ul li ul li:first').text('');
    
    $('#stopkaLinki ul:first>li').css({
        'display': 'inline',
        'color': 'blue'
    })
    $('#logaCzlonkow img:eq(0)').css({
        'marginLeft' : '0'
    })

    $('#logaCzlonkow img:eq(1)').css({
        'marginLeft' : '22px'
    })

    $('#logaCzlonkow img:eq(2)').css({
        'marginLeft' : '18px'
    })

    var wysokoscMenu = $('#menu').height()
    $('#menu').css({
        'marginTop': (236 - wysokoscMenu) / 2
    })

    $('#logaCzlonkow img').hover(
        function() {
            partner = $(this).attr('title')
            $(this).attr('src', './img/czlonkowie/' + partner + '1.png')
        },function() {
            $(this).attr('src', './img/czlonkowie/' + partner + '.png')
    })

    $('#eight img').hover(function() {
        $(this).attr('src', './img/czlonkowie/eight1.png')
    }, function() {
        $(this).attr('src', './img/czlonkowie/eight.png')
    })
})
