$(document).ready(function(){
    // zobrazeni slidesho po nacteni dokumentu
    $('#slideshow img').show();
    
    // slideshow
    $('#slideshow').jqFancyTransitions({
        effect: 'curtain',
        width: 940,
        height: 359,
        strips: 35,
        links: false,
        delay: 6000,
        speed: 5000,
        links: true 
    });
    
    // lightbox
    $('a[rel=lightbox]').colorbox({
        next: 'další',
        previous: 'předchozí',
        close: 'zavřít',
        current: '{current} z {total}',
        maxWidth: 1024,
        maxHeight: 768
    });
    
    // 
    $(".button.sipka").click(function(){
		if ( $('#sortiment-galerie').is(':visible')) {
			$(this).removeClass("sipkaup");
			$(this).addClass("sipka");
		} else {
			$(this).removeClass("sipka");
			$(this).addClass("sipkaup");
		}
        $('#sortiment-galerie').slideToggle('slow');
    });
    
    
    // lokalni plynule skrolovani
    $.localScroll();
    
    // vysouvaci titulek k ilustr. obrazkum
    $('.boxgrid.caption').hover(function(){
        $(".cover", this).stop().animate({
            top: '40px'
        }, {
            queue: false,
            duration: 160
        });
    }, function(){
        $(".cover", this).stop().animate({
            top: '152px'
        }, {
            queue: false,
            duration: 160
        });
    });
});

