
        $(document).ready(function(){

             $('.box--list-social #social-links a').hover( function(e){
                var href = $(this).attr('href');
                $('#social-view-url').html(href);
             });

             $('.menu-list > li').has('ul').addClass('submenu');

            $('#logoSlider').owlCarousel({
                autoplay: true,
                autoplayTimeout: 10000,
                rtl: true,
                loop: true,
                margin: 10,
                nav: true,
                dots: false,
                navText: [
                    '<i class="fa fa-chevron-right"></i>',
                    '<i class="fa fa-chevron-left"></i>'
                ],
                responsive: {
                    0: {
                        items: 1
                    },
                    600: {
                        items: 3
                    },
                    1000: {
                        items: 4
                    }
                }
            });


            $('#vertical-slider-1').easyTicker({
                direction: 'up',
                easing: 'swing',
                speed: 'slow',
                interval: 3000,
                height: 'auto',
                visible: 3,
                mousePause: 1,
                controls: {
                    up: '.btnUp',
                    down: '.btnDown',
                    toggle: ''
                }
            });
            $('#vertical-slider-2 ').easyTicker({
                direction: 'up',
                easing: 'swing',
                speed: 'slow',
                interval: 3000,
                height: 'auto',
                visible: 3,
                mousePause: 1,
                controls: {
                    up: '.btnUp-2-1',
                    down: '.btnDown-2-2',
                    toggle: ''
                }
            });


        });
;