$(function() {
    $("ul.top").simplecarousel({
        width:896,
        height:406,
        visible: 1,
        auto: 6000,              
        pagination: true
    });   
    
    $(function() {
        $('#mybook').booklet({
            width:  896,
            height: 400,
            pagePadding: 0,
            manual: false,
            pageNumbers: false
        });
    });
    
    $(function() {
        $('#oserialu').booklet({
            width:  896,
            height: 400,
            pagePadding: 0,
            manual: false,
            pageNumbers: false
        });
    });
            
    $('.top').css('display','block');
    $('.loup').css('display','block');
    
    // wszystkie obrazki o klasie hover podmienia je
    $('.img')
    .mouseover(function() { 
        if(! $(this).attr("src").match(/_hover/)) {
            var src = $(this).attr("src").match(/[^\.]+/) + "_hover.png";          
            $(this).attr("src", src);
        }
    })
    .mouseout(function() {
        if($(this).attr("src").match(/_hover/)) {
            var src = $(this).attr("src").replace("_hover", "");        
            $(this).attr("src", src);
        }
    });			
    
   
});
