$(document).ready(function() {
	$("#nav > li").hover(function() {
		$(this).children("div").children("ul").stop(false, true).animate({ width: 'toggle', height: 'toggle' }, "fast");
	}, function() {
		$(this).children("div").children("ul").stop(false, true).hide();
	});
});

