// Toggles css display state (none/hidden) when li.dropdown-heading element is clicked
	$('.dropdown-heading').click(function() {
		$('.dropdown-list',this).fadeToggle('fast');
	});
	
// Hides open #dropdown-list when opposite #dropdown-heading is clicked
	if ($('#not-finding-job-dropdown').css('display') == 'block');
		$('#featured-jobs-dropdown-heading').click(function() {
			$('#not-finding-job-dropdown').fadeOut('fast');
		});

	if ($('#featured-jobs-dropdown').css('display') == 'block');
		$('#not-finding-job-dropdown-heading').click(function() {
			$('#featured-jobs-dropdown').fadeOut('fast');
		});

// Hides popout when mouse leaves menu
	$('.menu').mouseleave(function() {
		$('.dropdown-list').delay(250).fadeOut('fast');
	});
	
	$('.menu').click(function(event){
		event.stopPropagation();
	});
