jQuery(document).ready(function()
{
	$('#nav ul li.dbl').hover(
		function(){
			$('.sub-hold').not($(this).find('.sub-hold')).hide(1000);
			$(this).find('.sub-hold').stop(true,true);
			$(this).find('.sub-hold').fadeIn(500);	
		},
		function(){
			$(this).find('.sub-hold').hide(1000);
		}
	);

});

