$(document).ready(function() { $(".anmouse").hover(function() { $(this).nextAll("i").addClass("iconhover"); }, function() { $(this).nextAll("i").removeClass("iconhover"); }); $(".anmouse").click(function() { $(this).nextAll("i").addClass("iconactive"); $(this).addClass("anactive"); $(this).parent().parent().nextAll().children().children("a").removeClass("anactive"); $(this).parent().parent().prevAll().children().children("a").removeClass("anactive"); $(this).parent().parent().nextAll().children().children("i").removeClass("iconactive"); $(this).parent().parent().prevAll().children().children("i").removeClass("iconactive"); }); });