$(function() {
    $(".neon-navi div").hover(function () {
        $('img', this).eq(0).hide();
        $('img', this).eq(1).show();
        $('p', this).show();
    }, function(){
        $('img', this).eq(0).show();
        $('img', this).eq(1).hide();
        $('p', this).hide();
    });

    $('.logo img').each(function() {
        var current = 0;
        var img = $(this);
        var fps = 28;
        var speed = Math.round(1000 / fps);
        var height = 1360;
        var step = 1;

        function move() {

            current -= step;
            current = current % height;

            img.css({
                'background-position': '0 '+current+'px'
            });

            setTimeout(move, speed);
        }

        move();

    });
});
