$(document).ready(function(){

// New Here: Clicking #learnmore-dropdown should open or close New Here Dropdown
	$('#learnmore-dropdown').click(function() {
		if ($('#learnmore').is(':visible')) {
			$('#learnmore').fadeOut('slow');
			$('#learnmore').removeClass('active');
			$('#learnmore-dropdown').removeClass('active');
		}
		else {
			$('#learnmore').fadeIn('medium');
			$(this).addClass('active');
		}
		return false;
	});
// New Here: Clicking the body should open or close New Here Dropdown
	$('body').click(function() {
		if ($('#learnmore').is(':visible')) {
			$('#learnmore').fadeOut('slow');
			$('#learnmore').removeClass('active');
			$('#learnmore-dropdown').removeClass('active');
		}
	});
// New Here: Clicking the menu shouldn't close New Here Dropdown
	$('#learnmore').click(function() {
		return false;
	});
	$('#learnmore a').click(function() {
		window.location = $(this).attr('href');
	});

 });