これは、ナビゲーション メニュー項目にカーソルを合わせるために使用しているコードです。
$("#unlock_nav a").hover(function () {
$(this).css('background-image', 'url(http://www.eileenfisher.com/ns/images/13f_m2/sbi_features/unlocked_season/but_' + $(this).attr('href').slice(1) +'_pink.png');
},
function(){
$(this).css('background-image', 'url(http://www.eileenfisher.com/ns/images/13f_m2/sbi_features/unlocked_season/but_' + $(this).attr('href').slice(1) + '_white.png');
});