$(
	function()
	{
		$("#menubar li:not('.current')").each
		(
			function()
			{
				$(this).mouseover
				(
					function()
					{
						$(this).addClass('current');
					}
				);
				$(this).mouseout
				(
					function()
					{
						$(this).removeClass('current');
					}
				);
			}

		);
	}
);