$(document).ready(function(){
	$("div#navigation > ul > li").mouseover(function(){
		$(this).find("div.hide").stop(true, true).delay(200).show("slow");
	});
	
	$("div#navigation > ul > li").mouseleave(function(){
		$(this).find("div.hide").stop(true, true).hide("slow");
	});
});
