$(document).ready(function() {
	/* menu_mid sub-menu rollover */
    var nav = $("#menu_top");

		/* find all sub-menu items */
		nav.find("li").each(function() {
			if ($(this).find("ul").length > 0) {

				//show subnav on hover
				$(this).mouseenter(function() {
					$(this).find("ul").stop(true, true).slideDown(400);
				});

				//hide submenus on exit
				$(this).mouseleave(function() {
					$(this).find("ul").stop(true, true).slideUp(400);
				});
			}
		});
});
