$(document).ready(function () {
    $('#DeptMenuHeader > ul > li').hover(
		function () {
		    $(this).children('div:not(:animated)').slideDown(300);
		},
		function () {
		    $(this).children('div').slideUp(300);
		}
	);
});
