
window.onload = function(){
    
    $("#q").click(function() { 
        $(this).val('');
    });
    
    //$('.dzialy').accordion();
    $('.most_popular').accordion();


    var ea=0;
    var mb=0;
    var ls=0;
    
    $("#eaz").click(function() {
        $(".eurobook_articles .link").slideToggle();
        if((ea % 2)==0) $(this).css("color","#cdcdee"); else $(this).css("color","#0000ee");
        ea++;
    });
    
    $("#mbz").click(function() {
        $(".brand_month ul").slideToggle();
        if((mb % 2)==0) $(this).css("color","#cdcdee"); else $(this).css("color","#0000ee");
        mb++;
    });

    $("#lsz").click(function() {
        $(".sponsored_links .link").slideToggle();
        if((ls % 2)==0) $(this).css("color","#cdcdee"); else $(this).css("color","#0000ee");
        ls++;
    });
    

    $('#q').autocomplete('result_list',{selectFirst:0});
    
    $('.title a').tooltip({
        track: true,
        delay: 100,
        showURL: false,
        showBody: " - ",
        fade: 250
    });

    $('.eurobook_articles .link').corners();
    $('.most_popular .tyt').corners();
    $('.dzialy .tyt').corners();

};

