$(document).ready(function()
{
	$("#MenuAEM li").hover(
			function()
			{
				$(this).children("ul").show(200);
			},
			function()
			{
				$(this).children("ul").hide(200);
			});
});