$(document).ready(function(){

    

    // initiate top message

    $('ul#top_sel').show();

    $('.top_news_ot').hide();

    $('.top_news').eq(1).hide();

    

    // top message

    $('ul#top_sel li').click(function(){

        

            $('ul#top_sel li').removeClass();

            $(this).addClass('act');

        

        if ($(this).attr('id')!='no_act'){

            var id = $(this).attr('id').substr(3);

            $('.top_news').hide();

            $('#top_news_'+id).show();

        }

        

    });

    

    // initiate top news

    $('ul#top_choice').show();

    $('.r_news').eq(1).hide();

    $('.r_news').eq(2).hide();

    $('.r_news_t').hide();

    

    // right top news switch

    $('ul#top_choice li').click(function(){

        

        var id = $(this).attr('id').substr(4);

        

        $('ul#top_choice li').eq(0).empty().append('3 dni');

        $('ul#top_choice li#top_7').empty().append('7 dní');

        $('ul#top_choice li#top_30').empty().append('Mesiac');

        

        $(this).append('<span class="act"></span>')

        

        $('.r_news').hide(); // hide all

        $('#r_news_'+id).show(); //show chosen

         

    });

    

    //show tip

    $('#main_right .tip_in').hide();

    

    $('#main_right .tip').click(function(){

        $('#main_right .tip_in').slideToggle();

    });

    

});                             
