var offset_top;
offset_top = 4;
$('#categories li').css('background-position','0px '+offset_top+'px');
$('#categories li.current').css('background-position','7px '+offset_top+'px')	;
$(document).ready(function(){

  if (!$.browser.msie) {
    if ($.browser.msie || $.browser.safari) {
      offset_top = 3
    }


    $('#categories li')
    .mouseover(function(){
      if (!$(this).hasClass('current')) {
        $(this).stop();
        $(this).animate({
          backgroundPosition: '(7px '+offset_top+'px)'
          },150);
      }
    })
    .mouseout(function(){
      if (!$(this).hasClass('current')) {
        $(this).stop();
        $(this).animate({
          backgroundPosition:'(0px '+offset_top+'px)'
          },150);
      }
    })
  }

})