(function($) {
	$(function() {
		$('#menubar li').hover(function() {
			$('span:first', this).addClass('hover');
		}, function() {
			$('span:first', this).removeClass('hover');
		});
	});
})(jQuery);
