Recently i had a scenario where i need to pin a jgrowl message(a jquery message board).I needed a notification change through two icons one with a background darker than the other to differentaite pin & unpin..you can see the example here
http://fundapass.blogspot.in/2012/09...ith-pinup.html
if you want simply a change in css,as in google home page menu bar this will do the trick
Code:
$('#panelroot > a').hover(
function () {
$(this).css("color","F8FAFC");
},
function () {
$(this).css("color","#B7C9D7");
}
);
});