$(document).ready(function() {
	jQuery('#navWhy').hover(function () {
		jQuery('#navSubWhy').stop(true, true).delay(200).slideDown('slow');
	}, function () {
		jQuery('#navSubWhy').stop(true, true).delay(1000).slideUp('slow');
	});
	jQuery('#navSubWhy').hover(function () {
		jQuery(this).stop(true, true).delay(0).slideDown('slow');
	}, function () {
		jQuery(this).stop(true, true).delay(1000).slideUp('slow');
	});
	jQuery('#navOffices').hover(function () {
		jQuery('#navSubOffices').stop(true, true).delay(200).slideDown('slow');
	}, function () {
		jQuery('#navSubOffices').stop(true, true).delay(1000).slideUp('slow');
	});
	jQuery('#navSubOffices').hover(function () {
		jQuery(this).stop(true, true).delay(0).slideDown('slow');
	}, function () {
		jQuery(this).stop(true, true).delay(1000).slideUp('slow');
	});
});
