$(document).ready(function() {

$(".fancy").fancybox();

$("a.fotoGroup").fancybox();

$('ul li ul').hover(function() {
    var pobranyDwa = $(this).attr('class');
    $('#'+pobranyDwa).addClass('aktywnyPrzez');
},

  function () {
    var pobranyDwa = $(this).attr('class');
    $('#'+pobranyDwa).removeClass('aktywnyPrzez');
    
    $('#drugaKolumna').innerfade({
        animationtype: 'slide',
        speed: 750,
        timeout: 2000,
        type: 'random',
        containerheight: '1em'
    });
  }  
);

$('.testClass1').click(function() {
    $('.secondBar').hide();
    $('#secondBar1').show();
}
);

$('.testClass3').click(function() {
    $('.secondBar').hide();
    $('#secondBar3').show();
}
);

$('.testClass4').click(function() {
    $('.secondBar').hide();
    $('#secondBar4').show();
}
);

$('.testClass5').click(function() {
    $('.secondBar').hide();
    $('#secondBar5').show();
}
);

$('.testClass6').click(function() {
    $('.secondBar').hide();
    $('#secondBar6').show();
}
);

function mycarousel_initCallback(carousel)
{
    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};
 
jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        auto: 8,
        scroll: 1,
        wrap: 'last',
        initCallback: mycarousel_initCallback
    });
});
});
