jQuery('document').ready(function($){

    var rand_min = 0;
    var rand_max = 6;
    var random = Math.floor(Math.random() * (rand_max - rand_min + 1)) + rand_min;

    $(window).load(function(){
        $('#slider').nivoSlider({
            pauseTime: 8000,
            animSpeed: 500,
            startSlide: random,
            effect: 'sliceDown'
        });
    });

    //ugrás az oldal tetejére
    $('.top_scroll').click(function(){
        $('html, body').animate({scrollTop: '0'}, 'slow');
    });

    //nyelv választás
    $('.lang_change').click(function(){
        var name = $(this).attr('id');
        
        $.post( '/ajax.php', {act: 'do_lang', send_name: name},
                function(data){
                    if(data.status == '1'){
                        window.location.reload();
                    }
                    else{
                        alert('Ez a nyelv nem létezik!');
                    }
                }
            )
    })

});

