$(document).ready(function() {         
        $(function() {        
            $('#promoSlideshowIn').cycle({
                fx:      'scrollHorz',
                speed:    500, 
                timeout:  7000,
                pause:    1,
                prev:    '#prev1',
                next:    '#next1',
                pager:   '#nav1',
                cleartype:  true,
                cleartypeNoBg:  true
            }); 
            $('#newsSlideshow').cycle({
                fx:      'scrollHorz',
                speed:    500, 
                timeout:  6000,
                pause:    1,
                prev:    '#prev2',
                next:    '#next2',
                pager:   '#nav2',
                cleartype:  true,
                cleartypeNoBg:  true
            });                                                          
        });           
        
        /*OLDER NEWS*/
        $('#olderNews').hide();
        var showText="Zobrazit starší příspěvky";
        var hideText="Skrýt starší příspěvky";        
        $('#olderNewsLink a').toggle(
                function () {
                        $('#olderNews').show('fast');
                        $(this).html(hideText);
                        $(this).addClass('active');
                },
                function () {
                        $('#olderNews').hide('fast');
                        $(this).html(showText);
                        $(this).removeClass('active');
                }
        );       
        
        /*LAYER REG BUBBLES*/        
        $('.bubble').hide();
        $('img.iconInfo').mouseover(function() {
                $(this).next('.bubble').show('fast');
                return false;
        });  
        $('img.iconInfo').mouseout(function() {
                $(this).next('.bubble').hide('fast');
                return false;
        });                              		    
});

