(function($) {
	$(document).ready(function () {
		// flag to let everything know we have javascript enabled
		$("body").addClass("js-enabled");
		
		/* ============================== */
		/* = archive calendar drop down = */
		/* ============================== */
		$("#archive .heading a").bind("click", function () {
			$("#archive .archive-list").hide();
			$(this).parent().next(".archive-list").show();
			return false;
		});
	});	
}) (jQuery);