$(document).ready(function(){
                    
    //Ten kod robi kolorowe koleczka
//    $('.koleczko').each(function(index) {
//        $(this).attr('id','koleczko-'+index);
//
//        var flashvars = {
//            color:  $(this).attr('color')
//        };
//        var params = {
//            wmode: "transparent"
//        };
//        var attributes = {
//        };
//
//        swfobject.embedSWF(BASE_URL+"images/koleczko.swf", 'koleczko-'+index, $(this).width(), $(this).height(), "9.0.0","" ,flashvars, params, attributes);
//    });
    
    
    //Ten kod robi jScrollPanowe suwaki
    $('.scroll-pane').jScrollPane({
        showArrows: true, 
        verticalDragMinHeight: 10, 
        verticalDragMaxHeight: 10
    });
    
    //wyswietl pionowe lub poziome
    $.each($('.partners_menu'), function(){
        //alert($(window).width());
        if($(window).width() > 1060){
            if(!$(this).hasClass('narrow')){
                $(this).show();
            }
        }else{
            if(!$(this).hasClass('narrow')){
            ;
            }else $(this).show()
        }     
    });
    
   //akcja po najechaniu na koleczko
   $('.koleczko_box a').hover(function(){
//       $('.partner_logotext').css('color', $(this).attr('color'));
//       $('.partner_logotext p').html($(this).attr('event'));
       $('.partner_textbox').css('background-color', $(this).attr('color'));
       $('.partner_textbox .zacheta').html($(this).attr('producer'));
       $('.partner-logo-img img').attr('src', $(this).attr('image_source'));
   });
   
   
});

