$(document).ready(function() {
	/* 2nd example */
	$("#OnlineOA_menu2 li a").wrapInner('<span class="out"></span>');
	$("#OnlineOA_menu2 li a").each(function() {
				$('<span class="over">' + $(this).text() + '</span>')
						.appendTo(this);
			});
	$("#OnlineOA_menu2 li a").hover(function() {
				$(".out", this).stop().animate({
							'top' : '45px'
						}, 200); // move down - hide
				$(".over", this).stop().animate({
							'top' : '0px'
						}, 200); // move down - show

			}, function() {
				$(".out", this).stop().animate({
							'top' : '0px'
						}, 200); // move up - show
				$(".over", this).stop().animate({
							'top' : '-45px'
						}, 200); // move up - hide
			});
});

