jQuery(document).ready(function()
	{
		jQuery(".navigation ul li ").hover (
			function ()
			{
		  	jQuery(this).children("ul").show("fast");
			}, 
			function ()
			{
			  var chi = jQuery(this);
		  	setTimeout(function () {
	      	if (!chi.children("ul").is(":animated"))
          	chi.children("ul").hide("fast");
		  	}, 300);
			}
		);
	}
);


