// JavaScript Document

jQuery(function()
{
	jQuery('ul.nav li').each(function()
	{
		jQuery(this).hover(function()
		{
			jQuery('ul:first', jQuery(this)).show('fast');
		},
		function()
		{
			jQuery('ul:first', jQuery(this)).hide('fast');
		});
	});
});
