$(document).ready(function() {
    
	Cufon.replace('#menu p,#info,#TB_ajaxWindowTitle,#countdown_dashboard', { fontFamily: 'League Gothic' });
	Cufon.replace('#menu,#countdown_dashboard', {textShadow: '#000 1px 1px'}); 
	
});

/** @author www.studiostyle.sk */
        jQuery(document).ready(function() {

            function moveLeft() {
                $('#bg').stop().animate({
                    backgroundPosition:"(-10000 0px)"
                }, 180000, 'linear');
                return false;
            }

            function moveRight() {
                $('#bg').stop().animate(
                        {
                            backgroundPosition:"(10000 0px)"
                        }, 180000, 'linear'
                );
                return false;
            }

            function stop() {
                $('#bg').stop();
                return false;
            }

            $("#bg").css("backgroundPositionX", 0);
            $("#bg").css("backgroundPositionY", 0);

            /* napojeni tlacitek na funkce, ktere se spusti po kliknuti */
            $("#left").click(moveLeft);
            $("#right").click(moveRight);
            $("#stop").click(stop);

            /* pro spusteni animace hned po nacteni stranky */
            moveLeft();

        });
