I've got following code: (function($) { $(".tmb:first-child").on('mouseenter', function() { $(".style-light-bg").css("background-color", "rgb(208,206,202)"); $(".tmb:nth-child(2)").addClass("filtered"); }); $(".tmb:first-child").on('mouseleave', function() { $(".style-light-bg").css("background-color", "#e6e5e2"); $(".tmb:nth-child(2)").removeClass("filtered"); }); $(".tmb:nth-child(2)").on('mouseenter', function() { $(".style-light-bg").css("background-color", "rgb(177,180,174)"); $(".tmb:first-child").addClass("filtered"); }); $(".tmb:nth-child(2)").on('mouseleave', function() { $(".style-light-bg").css("background-color", "#e6e5e2"); $(".tmb:first-child").removeClass("filtered"); }); })(jQuery); .style-light-bg { background-color: #e6e5e2; transition:…