(function($) {
	$(document).ready(function () {
		$("body:not('.js-enabled')").addClass("js-enabled");

		/* ============================== */
		/* = Archive drop down = */
		/* ============================== */		
		$(".archive .archive-heading").click(function() {
			$(this).next()
				.slideToggle("fast")
			.end()
			.toggleClass("on");
			return false;
		});
	});
}) (jQuery);