$(function(){ $(".aptOut a").hover(onOver2, onOut2); $(".menus_2 a").hover(onOver2, onOut2); }) function onOver() { $(this).find("a").css({ "color" : "white" }); $(this).css({ "background-color": "#09365a"}); } function onOut(){ $(this).find("a").css({ "color" : "#072F4F" }); $(this).css({ "background-color": "white"}); } function onOver2() { $(this).css({ "color" : "white" }); $(this).css({ "background-color": "#09365a"}); } function onOut2(){ $(this).css({ "color" : "#072F4F" }); $(this).css({ "background-color": "white"}); }