$(document).ready(function() {
	$("#navigation").hover (
		function () {		
			$(this).stop();
			$(this).addClass("slidein");
			$(this).animate({ height: "380px", border: "1px solid #5d5a45" }, 600);
			//$(this).find("li").css("opacity", "0");
			//$(this).find("li").animate({ opacity: "1" }, 2000);
		},
		function () {			
			$(this).stop();
			$(this).animate({ height: "25px" }, 600,
				function() {
					$(this).css("border", "1px solid #000");					
				}
			);
			//$(this).find("li").animate({ opacity: "0" }, 2000)
		}
	);
});