$('document').ready(function(){
    $('.new-select').each(function(){
        $(this).html($(this).parent().find(".h-select option:selected").html());
    });

    $('.h-select').change(function(){
        $(this).parent().find('.new-select').html($(this).parent().find(".h-select option:selected").html());
    });

    $('.dark-repeat .item').hover(function(){
        if (!$(this).hasClass('active')){
            $(this).addClass('hover');
        }
    });

    $('.dark-repeat .item').mouseleave(function(){
        $(this).removeClass('hover');
    });

    $('.pagination li').hover(function(){
        if (!$(this).hasClass('active')){
            $(this).addClass('hover');
        }
    });
    
    $('.pagination li').mouseleave(function(){
        $(this).removeClass('hover');
    });
});

