$(document).ready(function() {
					
			$("#menu2 li a").wrapInner( '<span class="out"></span>' );
			
			$("#menu2 li a").each(function() {
				$( '<span class="over">' +  $(this).text() + '</span>' ).appendTo( this );
			});
 
			$("#menu2 li a").hover(function() {
				$(".out",	this).stop().animate({'bottom':	'45px'},	224); // move down - hide
				$(".over",	this).stop().animate({'bottom':	'0px'},		224); // move down - show
 
			}, function() {
				$(".out",	this).stop().animate({'bottom':	'0px'},		322); // move up - show
				$(".over",	this).stop().animate({'bottom':	'45px'},	322); // move up - hide
			});
		});
