	$(function() {
		$(".menu").css("fontSize","0.9em");
		$(".menu").hover(function () {
			$(this).stop().animate({ fontSize: "1em" }, 100)
		},
		function () {
			$(this).stop().animate({ fontSize: "0.9em" }, 800)
		});
	});
        
        
	$(function() {
                $(".sub").css("fontSize","0.9em");
		$(".sub").hover(function () {
			// animate opacity to full
			$(this).stop().animate({fontSize: "1em"}, 100)
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({ fontSize: "0.9em"}, 100)
		});
	});

