$(document).ready(function() {
    $("#menu-menu a[href*=#]").each(function() {
        var link = $(this).attr('title');
        $(this).html('<img src="http://worldofwarcraft.pl/wp-content/themes/wow/img/menu/' + link + '+.png" alt="' + link + '" class="menu-img" />');
        var linkcookie = $.cookie(link);
        if (linkcookie == "expanded")
        {
            $(this).parent().find('ul').show();
            $(this).html('<img src="http://worldofwarcraft.pl/wp-content/themes/wow/img/menu/' + link + '-.png" alt="' + link + '" class="menu-img" active="true"/>');
        }
    })
    $("#menu-menu a[href*=#]").click(function() {
        var link1 = $(this).attr('title'); 
        $(this).parent().find('ul').slideToggle('fast');
        var img = $(this).find('img');
        if ($(img).attr('active') !== "true")
        {
            $(img).attr('src', "http://worldofwarcraft.pl/wp-content/themes/wow/img/menu/" + link1 + "-.png");
            $(img).attr("active", "true");
            $.cookie(link1, "expanded", {expires: 7, path: "/"});
        }
        else
        {
            $(img).attr('src', "http://worldofwarcraft.pl/wp-content/themes/wow/img/menu/" + link1 + "+.png");
            $(img).attr("active", "false");
            $.cookie(link1, null, {path: "/"});
        }
        return false;
    })

    $("#i_tabs").tabs();

    $('#top_09').hover(function() {
        $(this).attr('src', 'http://worldofwarcraft.pl/wp-content/themes/wow/img/top_09-h.jpg');
    }, function() {
        $(this).attr('src', 'http://worldofwarcraft.pl/wp-content/themes/wow/img/top_09.jpg');
    })
    $('#top_18').hover(function() {
        $(this).attr('src', 'http://worldofwarcraft.pl/wp-content/themes/wow/img/top_18-h.jpg');
    }, function() {
        $(this).attr('src', 'http://worldofwarcraft.pl/wp-content/themes/wow/img/top_18.jpg');
    })
    $('#top_20').hover(function() {
        $(this).attr('src', 'http://worldofwarcraft.pl/wp-content/themes/wow/img/top_20-h.jpg');
    }, function() {
        $(this).attr('src', 'http://worldofwarcraft.pl/wp-content/themes/wow/img/top_20.jpg');
    })
    $('#top_09').click(function() {
        $.cookie('media', 'expanded', {expires: 7, path: "/"});
    })
    $('#top_18').click(function() {
        $.cookie('klasy-postaci', 'expanded', {expires: 7, path: "/"});
    })
    $('#top_20').click(function() {
        $.cookie('wiedza', 'expanded', {expires: 7, path: "/"});
    })
    var default_values = new Array();
    $("#s").focus(function() {
        if (!default_values[this.id]) {
            default_values[this.id] = this.value;
        }
        if (this.value == default_values[this.id]) {
            this.value = '';
        }
        $(this).blur(function() {
            if (this.value == '') {
                this.value = default_values[this.id];
            }
        });
    });
    $('#searchsubmit').click(function() {
        if ($(this).parent().find('#s').val() == 'Szukana fraza')
            return false;
        else $("#searchform").submit();
    })
    $('.lightbox').lightBox({
    	imageLoading: 'http://worldofwarcraft.pl/wp-content/themes/wow/img/images/lightbox-ico-loading.gif',
	imageBtnClose: 'http://worldofwarcraft.pl/wp-content/themes/wow/img/images/lightbox-btn-close.gif',
	imageBtnPrev: 'http://worldofwarcraft.pl/wp-content/themes/wow/img/images/lightbox-btn-prev.gif',
	imageBtnNext: 'http://worldofwarcraft.pl/wp-content/themes/wow/img/images/lightbox-btn-next.gif',
        imageBlank: 'http://worldofwarcraft.pl/wp-content/themes/wow/img/images/lightbox-blank.gif',
        maxHeight: 960,
        maxWidth: 1024
    });
    if (!$.cookie('top'))
    {

    } else
    {
        $('#i_top-content').hide();
        $('#ce_img').attr('src', 'http://worldofwarcraft.pl/wp-content/themes/wow/img/toprozwin.png');
    }
    $('#top-showhide').click(function() {
        if($.cookie('top') == "expand")
        {
            $('#ce_img').attr('src', 'http://worldofwarcraft.pl/wp-content/themes/wow/img/topzwin.png');
            $.cookie('top', null, {expires: -1, path: "/"});
        }
        else
        {
            $('#ce_img').attr('src', 'http://worldofwarcraft.pl/wp-content/themes/wow/img/toprozwin.png');
            $.cookie('top', "expand", {expires: 7, path: "/"});
        }
        $('#i_top-content').slideToggle();
        return false;
    })
    $('.i_wall').each(function() {
        $(this).find('.i_wall-sizes').hide();
        $(this).mouseover(function() {
            $(this).find('.i_wall-sizes').show();
        }).mouseout(
        function() {
            $(this).find('.i_wall-sizes').hide();
        })
    })
    $("#facebook-widget").hover(function(){
        $("#facebook-widget").stop(true, false).animate({
            right:"-15"
        },"medium");
    },function(){
        $("#facebook-widget").stop(true, false).animate({
            right:"-333"
        },"medium");
    },500);
     Cufon.replace('.cufon');

    // Gorne menu poziome z linkami do serwisow: usuniecie targetowanie (ma sie otwierac w tym samym oknie)
	$(".top-sklep-inexus").removeAttr('target');
	$(".top-diablo").removeAttr('target');
});
