$(document).ready(function() {
	
	$('.horizontalMenu ul.d0 li.d0 ul.d1')
		.css('display', 'block')
		.css('opacity', 0);
	
	$('.horizontalMenu ul.d0 li.d0 a').hover( 
		function () { // mouse over
			$(this).parent().children('ul.d1')
				.show()
				.css('z-index', 100)
				.stop(true)
				.fadeTo('slow', 1.0);
			
			$(this).parent().siblings('li.d0')
				.children('ul.d1')
					.stop(true)
					.css('z-index', 0)
					.fadeTo('slow', 0, function () {
			    		$(this).hide();
		    	});
		},
		function () { // mouse off
			$(this).parent().children('ul.d1')
				.css('z-index', 20)
			    .delay(5000)
			    .fadeTo('slow', 0, function () {
			    		$(this).css('z-index', 0)
			    			.hide();
			    	});
		}
	);
});
