(function($) {
  $(function() {
    $("#top #magnolialogo").toggle(function() {
			$(this).addClass("active");
			$("#overlay").animate({
        "height": "28px"
      }, 250, "easeInQuart", function() {
        $(this).show();
			});
		}, function() {
			$(this).removeClass("active");
      $("#overlay").animate({
        "height": "0"
      }, 250, "easeInOutQuart", function() {
				$(this).hide();
			});
		});
  });
})(jQuery);