$(document).ready(function() {

	$("#menu").find("ul").find("li").hover(
		function() {
			$(this).addClass("over");
// 			$(this).find("ul").animate( {height: 'toggle', opacity: 'show'}, 150);
			$(this).find("ul").animate( {opacity: 'show'}, 150);
		},
		function() {
			$(this).removeClass("over");
// 			$(this).find("ul").animate( {width: 'toggle', opacity: 'hide'}, 150);
			$(this).find("ul").animate( {opacity: 'hide'}, 150);
		}
	);

});

