//ustawienia wyświetlania górnego menu
$(document).ready(function(){               
               
                
    $('#menu li').hover(
        function () {
            $(this).find('a').addClass("hover");
        },
        function () {
            $(this).find('a').removeClass("hover");
        })
                                       
                
    $('#menu a').hover(
        function () {
            $(this).parent().addClass("hover");
        },
        function () {
            $(this).parent().removeClass("hover");
        })
})

//==============================

 
//ustawienia przewijanych logo          

jQuery(document).ready(function() {
    jQuery('#loga').jcarousel({
        auto: 3,
        wrap: 'last',
        scroll:1
                 
    });
});


//===========================

