	$(function() {

		$("div#menu div div ul").css({ display: "none" }); // Opera Fix

		$("div#menu > div").hover(
			function() {

				$(this).find("ul").css({ visibility: "visible", display: "none" }).show(200);

			},
			function() {
				var menuItem = this;
				timeoutMenu = setTimeout(function() {
					if ($(menuItem).find("ul").is(':visible')) {
						$(menuItem).find("ul").css({ visibility: "hidden" });
					}
				}, 150);
			});
	}); 
