$(function()
{
	$("#topmenu > ul > li").hover (
	function()
	{
		$(this).find("> ul").stop(true, true).fadeIn("fast");
	},
	function()
	{
		$(this).find("> ul").stop(true, true).fadeOut("fast");
	});
	
	$("#topmenu > ul > li > ul li").hover (
	function()
	{
		var child = $(this).find("> ul");
		var d = { w: $(this).width(), h: $(this).height() };
		var p = $(this).position();
		
		child.css ({ top: p.top });
		child.stop(true, true).fadeIn("fast");
	},
	function()
	{
		$(this).find("> ul").stop(true, true).fadeOut("fast");
	});
});
