$(function(){
   
    $('.menuHover:not(.selected)').hover(hoverUp, hoverDown);
    function hoverUp(){
        $(this).css("background-position", "-168px 0px");
    }
    function hoverDown(){
        $(this).css("background-position", "0px 0px");
    }
})
