
	$(document).ready(function()
	{
		var mcs = $("#menu-company-services");
		
		var menu_height = mcs.find('li a').outerHeight();
		
		mcs.css({overflow:"hidden", height: menu_height});
		
		mcs.find("li").each(function()
		{
			var href = $(this).children();
			
			var cloned_href = href.clone();
			
			$(this).append(cloned_href);
			
			href.hover(function()
			{
				$(this).stop().animate({top: -menu_height}, 200);
				$(this).next().stop().animate({top: -menu_height}, 200);
			});
			
			cloned_href.hover(null, function()
			{
				$(this).stop().animate({top: 0}, 200);
				$(this).prev().stop().animate({top: 0}, 200);
			});
		});
		
	});
