// JavaScript Document

$(function () {
	$('#menu li').mouseenter(function () {
		$(this).children('ul').stop().animate({opacity: 0.9}, 0, function () { $(this).fadeIn() });
	}).mouseleave(function () {
		$(this).children('ul').stop().fadeOut().animate({opacity: 0}, 0);
	});
});

         
						
