$(document).ready(function() {

        $(".fancybox").fancybox({
                'transitionIn'			: 'elastic',
                'transitionOut'			: 'elastic',
                'hideOnContentClick'	: true,
                centerOnScroll          : true
        });

        $(".band .text div").css({display: "none"});
        $(".band .switch span").text("více").show();
        $(".band .switch").click(function(){
            $(this).parent().children("div").slideToggle(300);
        });
        
        $('.deska .link').each(function(){
			$(this).attr('href', $(this).attr('href') + '?ajax=true' );
		});
        $('.deska .link').fancybox({
								centerOnScroll: true,
								type: "iframe",
								width: 620,
								height: 500,
								autoDimensions: false
							});

});
