$(function()
{
	$("#operation").hover(
		function () 
		{
			$(this).animate({"top": "-=50px"}, 150).find("ul").addClass("hover");
		}, 
		function () 
		{
			$(this).animate({"top": "+=50px"}, "slow").find("ul").removeClass("hover");
		}
	);
	
	$("#contact").hover(
		function () 
		{
			$(this).animate({"top": "-=50px"}, 150).find("ul").addClass("hover");
		}, 
		function () 
		{
			$(this).animate({"top": "+=50px"}, "slow").find("ul").removeClass("hover");
		}
	);
});