$(document).ready(function() {
	$('#menu li a').each(function () {
	  var $span = $(' span', this).css('opacity', 0);
	  $(this).hover(function () {
		if($.browser.msie){
			$(this).css('background-position', '0px -54px');
		}
		else {
			$span.stop().fadeTo(500, 1);
		}
	  }, function () {
		if($.browser.msie){
			$(this).css('background-position', 'center top');
		}
		else {
			$span.stop().fadeTo(500, 0);
		}
	  });
	});
});
